mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
Back to sh, fix comparison for POSIX/dash (++ CentOS, Ubuntu compatibility)
This commit is contained in:
parent
dc2418e532
commit
f3987007b0
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
|
|
||||||
#Move to the folder where ep-lite is installed
|
#Move to the folder where ep-lite is installed
|
||||||
cd `dirname $0`
|
cd `dirname $0`
|
||||||
|
@ -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