summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2013-03-22 17:39:22 +0000
committerJohn McLear <john@mclear.co.uk>2013-03-22 17:39:22 +0000
commite050ad57e48916ca72a9378a5c4c641b45ec7f06 (patch)
treef63bec251310fda7ab0af01bb2e4ea3fd64e5360 /bin
parentcd9c78998e84568d85bb850d892adee5ea5710b6 (diff)
downloadetherpad-lite-e050ad57e48916ca72a9378a5c4c641b45ec7f06.zip
fix typo
Diffstat (limited to 'bin')
-rwxr-xr-xbin/installDeps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/installDeps.sh b/bin/installDeps.sh
index 2f97090b..fc3133c1 100755
--- a/bin/installDeps.sh
+++ b/bin/installDeps.sh
@@ -44,7 +44,7 @@ fi
#check node version
NODE_VERSION=$(node --version)
NODE_V_MINOR=$(echo $NODE_VERSION | cut -d "." -f 1-2)
-if [ ! $NODE_V_MINOR = "v0.8" ] && [ ! $NODE_V_MINOR = "v0.6" && [ ! $NODE_V_MINOR = "v0.10" ]; then
+if [ ! $NODE_V_MINOR = "v0.8" ] && [ ! $NODE_V_MINOR = "v0.6" ] && [ ! $NODE_V_MINOR = "v0.10" ]; then
echo "You're running a wrong version of node, you're using $NODE_VERSION, we need v0.6.x, v0.8.x or v0.10.x" >&2
exit 1
fi