mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
actually fix run script ;)
This commit is contained in:
parent
4c928a8aac
commit
f9805102f1
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ fi
|
||||||
#check node version
|
#check node version
|
||||||
NODE_VERSION=$(node --version)
|
NODE_VERSION=$(node --version)
|
||||||
node_v_minor=$(echo $NODE_VERSION | cut -d "." -f 1-2)
|
node_v_minor=$(echo $NODE_VERSION | cut -d "." -f 1-2)
|
||||||
if [ ! node_v_minor = "v0.8" ] || [ ! node_v_minor = "v0.6"]; then
|
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
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue