summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/run.sh b/bin/run.sh
index 83b07a37..9389de6f 100755
--- a/bin/run.sh
+++ b/bin/run.sh
@@ -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