Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/Pita/etherpad-lite into …
Browse files Browse the repository at this point in the history
…develop
  • Loading branch information
JohnMcLear committed Jul 5, 2012
2 parents 35bf5d1 + 84ee5c9 commit 4c928a8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bin/installDeps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ fi

#check node version
NODE_VERSION=$(node --version)
if [ ! $(echo $NODE_VERSION | cut -d "." -f 1-2) = "v0.8" ]; then
echo "You're running a wrong version of node, you're using $NODE_VERSION, we need v0.8.x" >&2
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.6.x or v0.8.x" >&2
exit 1
fi

Expand Down

0 comments on commit 4c928a8

Please sign in to comment.