From f9805102f179608fc2bbbee67c01119e9917726b Mon Sep 17 00:00:00 2001 From: johnyma22 Date: Thu, 5 Jul 2012 18:30:59 +0100 Subject: [PATCH] actually fix run script ;) --- bin/installDeps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/installDeps.sh b/bin/installDeps.sh index 83a9af1c1..318e7fbba 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -36,7 +36,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"]; then +if [ ! $node_v_minor = "v0.8" ] && [ ! $node_v_minor = "v0.6" ]; then echo "You're running a wrong version of node, you're using $NODE_VERSION, we need v0.6.x or v0.8.x" >&2 exit 1 fi