Merge pull request #1851 from Karunamon/patch-1

Start script should use bash instead of sh for argument handling
This commit is contained in:
Marcel Klehr 2013-09-18 11:14:32 -07:00
commit 1bbe0293ac
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ fi
ignoreRoot=0
for ARG in $*
do
if [ $ARG == '--root' ]; then
if [ "$ARG" = "--root" ]; then
ignoreRoot=1
fi
done