Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2
::
3
:: Bake is a shell script for running CakePHP bake script
4
::
5
:: CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
6
:: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
7
::
8
:: Licensed under The MIT License
9
:: Redistributions of files must retain the above copyright notice.
10
::
11
:: @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
12
:: @link          http://cakephp.org CakePHP(tm) Project
13
:: @package       app.Console
14
:: @since         CakePHP(tm) v 2.0
15
::
16
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
17
 
18
:: In order for this script to work as intended, the cake\console\ folder must be in your PATH
19
 
20
@echo.
21
@echo off
22
 
23
SET app=%0
24
SET lib=%~dp0
25
 
26
php -q "%lib%cake.php" -working "%CD% " %*
27
 
28
echo.
29
 
30
exit /B %ERRORLEVEL%