Skip to content

Commit

Permalink
Merge branch 'tPl0ch-1.3-clibash' into 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Oct 15, 2011
2 parents ab88f3e + 856b34f commit 568308d
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions cake/console/cake
Expand Up @@ -10,15 +10,23 @@
# Licensed under The MIT License
# Redistributions of files must retain the above copyright notice.
#
# @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
# @link http://cakephp.org CakePHP(tm) Project
# @package cake
# @subpackage cake.cake.console
# @since CakePHP(tm) v 1.2.0.5012
# @license MIT License (http://www.opensource.org/licenses/mit-license.php)
# @copyright Copyright 2005-2011, Cake Software Foundation, Inc.
# @link http://cakephp.org CakePHP(tm) Project
# @package Cake
# @subpackage Cake.Console
# @since CakePHP(tm) v 1.2.0.5012
# @license MIT License (http://www.opensource.org/licenses/mit-license.php)
#
################################################################################
LIB=${0/%cake/}
LIB=$(cd -P -- "$(dirname -- "$0")" && pwd -P) && LIB=$LIB/$(basename -- "$0")

while [ -h $LIB ]; do
DIR=$(dirname -- "$LIB")
SYM=$(readlink $LIB)
LIB=$(cd $DIR && cd $(dirname -- "$SYM") && pwd)/$(basename -- "$SYM")
done

LIB=$(dirname -- "$LIB")/
APP=`pwd`

exec php -q ${LIB}cake.php -working "${APP}" "$@"
Expand Down

0 comments on commit 568308d

Please sign in to comment.