Skip to content

Commit

Permalink
Also changing shell script in skel directory
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Oct 15, 2011
1 parent bda8df1 commit f8772dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Cake/Console/Templates/skel/Console/cake
Expand Up @@ -19,15 +19,15 @@
################################################################################
LIB=$(cd -P -- "$(dirname -- "$0")" && pwd -P) && LIB=$LIB/$(basename -- "$0")

while [ -h $LIB ]; do
while [ -h "$LIB" ]; do
DIR=$(dirname -- "$LIB")
SYM=$(readlink $LIB)
LIB=$(cd $DIR && cd $(dirname -- "$SYM") && pwd)/$(basename -- "$SYM")
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}" "$@"
exec php -q "$LIB"cake.php -working "$APP" "$@"

exit;

0 comments on commit f8772dc

Please sign in to comment.