comparison cake/console/cake.bat @ 0:261e66bd5a0c

hg init
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Sun, 24 Jul 2011 21:08:31 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:261e66bd5a0c
1 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2 ::
3 :: Bake is a shell script for running CakePHP bake script
4 :: PHP versions 4 and 5
5 ::
6 :: CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
7 :: Copyright 2005-2010, Cake Software Foundation, Inc.
8 ::
9 :: Licensed under The MIT License
10 :: Redistributions of files must retain the above copyright notice.
11 ::
12 :: @copyright Copyright 2005-2010, Cake Software Foundation, Inc.
13 :: @link http://cakephp.org CakePHP(tm) Project
14 :: @package cake
15 :: @subpackage cake.cake.console
16 :: @since CakePHP(tm) v 1.2.0.5012
17 :: @license MIT License (http://www.opensource.org/licenses/mit-license.php)
18 ::
19 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
20
21 :: In order for this script to work as intended, the cake\console\ folder must be in your PATH
22
23 @echo.
24 @echo off
25
26 SET app=%0
27 SET lib=%~dp0
28
29 php -q "%lib%cake.php" -working "%CD% " %*
30
31 echo.
32
33 exit /B %ERRORLEVEL%