From f15ffbb5e45d65df71cfb84da8f3e16e95b33e01 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 5 Jul 2012 19:02:20 +0200 Subject: [PATCH 1/2] Allow v0.6.0 on UNIX --- bin/installDeps.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/installDeps.sh b/bin/installDeps.sh index 256bc55c995..7389d4e3178 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -35,7 +35,8 @@ fi #check node version NODE_VERSION=$(node --version) -if [ ! $(echo $NODE_VERSION | cut -d "." -f 1-2) = "v0.8" ]; then +node_v_minor=$(echo $NODE_VERSION | cut -d "." -f 1-2) +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.8.x" >&2 exit 1 fi From 5195f685e2289a9817748fb33f1cd34b6068ebf5 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 5 Jul 2012 19:08:20 +0200 Subject: [PATCH 2/2] Correct error message. --- bin/installDeps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/installDeps.sh b/bin/installDeps.sh index 7389d4e3178..83a9af1c1ce 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -37,7 +37,7 @@ fi 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 - echo "You're running a wrong version of node, you're using $NODE_VERSION, we need v0.8.x" >&2 + 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