Fixed sake to pass cli-script error levels through

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60355 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2008-08-11 03:45:55 +00:00
parent 46417f5d8a
commit 1759038d58
1 changed files with 3 additions and 3 deletions

6
sake
View File

@ -16,7 +16,7 @@ fi
# Find the PHP binary
for candidatephp in php5 php; do
if [ -f `which $candidatephp` ]; then
if [ `which $candidatephp` -a -f `which $candidatephp` ]; then
php=`which $candidatephp`
break
fi
@ -29,12 +29,12 @@ fi
if [ -d ./sapphire ]; then
$php ./sapphire/cli-script.php $1 $2
exit 0
exit $?
fi
if [ -f ./cli-script.php ]; then
$php ./cli-script.php $1 $2
exit 0
exit $?
fi
echo "Can't find ./sapphire/cli-script.php or ./cli-script.php"