mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
877b3934fd
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4604 3807eeeb-6ff5-0310-8944-8be069107fe0
25 lines
650 B
Bash
Executable file
25 lines
650 B
Bash
Executable file
#!/bin/bash
|
|
################################################################################
|
|
#
|
|
# Bake is a shell script for running CakePHP bake script
|
|
#
|
|
# Authors:
|
|
# Garrett J. Woodworth
|
|
# Nate Abele
|
|
# <http://www.cakefoundation.org>
|
|
#
|
|
#
|
|
# This script was made in the hope it would make my life easier, feel free to
|
|
# use and abuse it as you see fit. However WITHOUT ANY WARRANTY. So if this
|
|
# script causes your computer to tell bad jokes, its not our problem.
|
|
#
|
|
################################################################################
|
|
|
|
LIB=${0/%cake/};
|
|
APP=`pwd`/;
|
|
|
|
exec php -q ${LIB}dispatch.php "$@" -working "${APP}"
|
|
|
|
echo " ";
|
|
|
|
exit;
|