Merge pull request #1851 from Karunamon/patch-1
Start script should use bash instead of sh for argument handling
This commit is contained in:
commit
1bbe0293ac
|
@ -11,7 +11,7 @@ fi
|
||||||
ignoreRoot=0
|
ignoreRoot=0
|
||||||
for ARG in $*
|
for ARG in $*
|
||||||
do
|
do
|
||||||
if [ $ARG == '--root' ]; then
|
if [ "$ARG" = "--root" ]; then
|
||||||
ignoreRoot=1
|
ignoreRoot=1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in New Issue