diff options
author | John McLear <john@mclear.co.uk> | 2013-11-14 22:46:58 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-11-14 22:46:58 +0000 |
commit | 1f68f07083ebd249aaf6309dbf42f37371586ea0 (patch) | |
tree | d30efaa282ba349eb0e6200b6fb4472f98a759f0 | |
parent | 1ee7c7000f3b868ce6b38567ecb137e62d46857a (diff) | |
download | etherpad-lite-1f68f07083ebd249aaf6309dbf42f37371586ea0.zip |
support node 0.11
-rwxr-xr-x | bin/installDeps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/installDeps.sh b/bin/installDeps.sh index 8a500029..84f2e227 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -44,8 +44,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.10" ]; then - echo "You're running a wrong version of node, you're using $NODE_VERSION, we need v0.8.x or v0.10.x" >&2 +if [ ! $NODE_V_MINOR = "v0.8" ] && [ ! $NODE_V_MINOR = "v0.10" ] && [ ! $NODE_V_MINOR = "v0.11" ]; then + echo "You're running a wrong version of node, you're using $NODE_VERSION, we need v0.8.x, v0.10.x or v0.11.x" >&2 exit 1 fi |