summaryrefslogtreecommitdiff
path: root/bin/installDeps.sh
diff options
context:
space:
mode:
authorPeter 'Pita' Martischka <petermartischka@googlemail.com>2011-11-12 16:46:10 -0800
committerPeter 'Pita' Martischka <petermartischka@googlemail.com>2011-11-12 16:46:10 -0800
commit08e0c91204b2d199d6244e794b3778ced2f54492 (patch)
treee995d2b8d22deeacacb1cf6751ed55a882de053d /bin/installDeps.sh
parent17666339d081805a1030ece741eecfba9fba5300 (diff)
downloadetherpad-lite-08e0c91204b2d199d6244e794b3778ced2f54492.zip
removed the node v0.4 check, it works now with node v0.6
Diffstat (limited to 'bin/installDeps.sh')
-rwxr-xr-xbin/installDeps.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/bin/installDeps.sh b/bin/installDeps.sh
index cb367606..3fd6da74 100755
--- a/bin/installDeps.sh
+++ b/bin/installDeps.sh
@@ -20,13 +20,6 @@ hash node > /dev/null 2>&1 || {
exit 1
}
-#check node version
-NODE_VERSION=$(node --version)
-if [ ! $(echo $NODE_VERSION | cut -d "." -f 1-2) = "v0.4" ]; then
- echo "You're running a wrong version of node, you're using $NODE_VERSION, we need v0.4.x" >&2
- exit 1
-fi
-
#Is npm installed?
hash npm > /dev/null 2>&1 || {
echo "Please install npm ( http://npmjs.org )" >&2