diff options
author | Michael Parks <michael.parks@echostar.com> | 2013-09-17 15:27:52 -0600 |
---|---|---|
committer | Michael Parks <michael.parks@echostar.com> | 2013-09-17 15:27:52 -0600 |
commit | f3987007b0fff559197f428864574e9e63d65399 (patch) | |
tree | c1127fb38b7a2ec299a43dc4a7445eeaff7b32a9 /bin/run.sh | |
parent | dc2418e532b17a8d4507c3c2b4b335da3372df5f (diff) | |
download | etherpad-lite-f3987007b0fff559197f428864574e9e63d65399.zip |
Back to sh, fix comparison for POSIX/dash (++ CentOS, Ubuntu compatibility)
Diffstat (limited to 'bin/run.sh')
-rwxr-xr-x | bin/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh #Move to the folder where ep-lite is installed cd `dirname $0` @@ -11,7 +11,7 @@ fi ignoreRoot=0 for ARG in $* do - if [ $ARG == '--root' ]; then + if [ "$ARG" = "--root" ]; then ignoreRoot=1 fi done |