From de23d709208ea1d123ef4d4acd600a335638902d Mon Sep 17 00:00:00 2001 From: Mark Schmale Date: Fri, 12 Oct 2012 01:24:08 +0300 Subject: [PATCH] Update bin/installDeps.sh --- bin/installDeps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/installDeps.sh b/bin/installDeps.sh index df9278797..e7ef64ca3 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -36,8 +36,8 @@ 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.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 or v0.9.x" >&2 +if [ ! $NODE_V_MINOR = "v0.9" ] && [ ! $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, v0.8.x or v0.9.x" >&2 exit 1 fi