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