2012-03-16 00:20:39 +00:00
|
|
|
#!/usr/bin/env bash
|
2010-10-16 05:15:22 +00:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Bake is a shell script for running CakePHP bake script
|
|
|
|
# PHP 5
|
|
|
|
#
|
|
|
|
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2012-03-13 02:46:07 +00:00
|
|
|
# Copyright 2005-2012, Cake Software Foundation, Inc.
|
2010-10-16 05:15:22 +00:00
|
|
|
#
|
|
|
|
# Licensed under The MIT License
|
|
|
|
# Redistributions of files must retain the above copyright notice.
|
|
|
|
#
|
2012-06-06 06:46:00 +00:00
|
|
|
# @copyright Copyright 2005-2012, Cake Software Foundation, Inc.
|
|
|
|
# @link http://cakephp.org CakePHP(tm) Project
|
|
|
|
# @package app.Console
|
|
|
|
# @since CakePHP(tm) v 2.0
|
|
|
|
# @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2010-10-16 05:15:22 +00:00
|
|
|
#
|
|
|
|
################################################################################
|
2012-10-04 19:41:22 +00:00
|
|
|
if [[ `uname` =~ 'Darwin' ]]; then
|
|
|
|
ME=$0
|
|
|
|
else
|
|
|
|
ME=$(readlink -f $0)
|
|
|
|
fi
|
2012-07-16 14:54:02 +00:00
|
|
|
LIB=$(cd -P -- "$(dirname -- "$ME")" && pwd -P) && LIB=$LIB/$(basename -- "$ME")
|
2011-10-15 02:45:26 +00:00
|
|
|
|
2011-10-15 13:56:04 +00:00
|
|
|
while [ -h "$LIB" ]; do
|
2012-06-06 06:46:00 +00:00
|
|
|
DIR=$(dirname -- "$LIB")
|
|
|
|
SYM=$(readlink "$LIB")
|
|
|
|
LIB=$(cd "$DIR" && cd $(dirname -- "$SYM") && pwd)/$(basename -- "$SYM")
|
2011-10-15 02:45:26 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
LIB=$(dirname -- "$LIB")/
|
2012-07-16 14:54:02 +00:00
|
|
|
APP=$(dirname $(cd $(dirname $ME) && pwd))
|
2010-10-16 05:15:22 +00:00
|
|
|
|
2011-10-15 13:56:04 +00:00
|
|
|
exec php -q "$LIB"cake.php -working "$APP" "$@"
|
2010-10-16 05:15:22 +00:00
|
|
|
|
2011-10-14 19:06:36 +00:00
|
|
|
exit;
|