cake.bat 834 B

12345678910111213141516171819202122232425262728
  1. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2. ::
  3. :: Cake is a Windows batch script for invoking CakePHP shell commands
  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. :: @since 2.0.0
  14. :: @license http://www.opensource.org/licenses/mit-license.php MIT License
  15. ::
  16. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  17. @echo off
  18. SET app=%0
  19. SET lib=%~dp0
  20. php "%lib%cake.php" %*
  21. echo.
  22. exit /B %ERRORLEVEL%