summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2015-06-22 15:25:35 +0100
committerJohn McLear <john@mclear.co.uk>2015-06-22 15:25:35 +0100
commit95ca936dd72de095c74e0a7a0f3a75f837e8813b (patch)
tree892c3e877c0cb4e2964e5c257d5e5fd407d1d7fc
parent6b40961fc8fd360a9cce7a1df98147181ac9097a (diff)
parent376fccfe92db84625edbf4807592c50805cf82f4 (diff)
downloadetherpad-lite-95ca936dd72de095c74e0a7a0f3a75f837e8813b.zip
Merge pull request #2703 from LaKing/patch-1
run.sh [: too many arguments
-rwxr-xr-xbin/run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/run.sh b/bin/run.sh
index f2162310..4d276632 100755
--- a/bin/run.sh
+++ b/bin/run.sh
@@ -21,7 +21,7 @@ if [ "$(id -u)" -eq 0 ] && [ $ignoreRoot -eq 0 ]; then
echo "You shouldn't start Etherpad as root!"
echo "Please type 'Etherpad rocks my socks' or supply the '--root' argument if you still want to start it as root"
read rocks
- if [ ! $rocks = "Etherpad rocks my socks" ]
+ if [ ! "$rocks" == "Etherpad rocks my socks" ]
then
echo "Your input was incorrect"
exit 1