mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue