diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/installDeps.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/installDeps.sh b/bin/installDeps.sh index 2e1d465d..0b41c559 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -48,7 +48,8 @@ NODE_VERSION=$(node --version) NODE_V_MINOR=$(echo $NODE_VERSION | cut -d "." -f 1-2) NODE_V_MAIN=$(echo $NODE_VERSION | cut -d "." -f 1) NODE_V_MAIN=${NODE_V_MAIN#"v"} -if [ ! $NODE_V_MINOR = "v0.10" ] && [ ! $NODE_V_MINOR = "v0.11" ] && [ ! $NODE_V_MINOR = "v0.12" ] && [ ! $NODE_V_MAIN -gt 4 ]; then +echo $NODE_V_MAIN +if [ ! $NODE_V_MINOR = "v0.10" ] && [ ! $NODE_V_MINOR = "v0.11" ] && [ ! $NODE_V_MINOR = "v0.12" ] && [ ! $NODE_V_MAIN -ge 4 ]; then echo "You're running a wrong version of node. You're using $NODE_VERSION, we need node v0.10.x or higher" >&2 exit 1 fi |