Browse Source

update nodejs to v6.3.0

Keith Newman 9 years ago
parent
commit
dba0652cd5
1 changed files with 3 additions and 2 deletions
  1. 3 2
      toolset/setup/linux/languages/nodejs.sh

+ 3 - 2
toolset/setup/linux/languages/nodejs.sh

@@ -5,14 +5,15 @@ RETCODE=$(fw_exists ${IROOT}/node.installed)
   source $IROOT/node.installed
   return 0; }
 
-VERSION="5.10.0"
+VERSION="6.3.0"
 
 fw_get -O http://nodejs.org/dist/v$VERSION/node-v$VERSION-linux-x64.tar.gz
 fw_untar node-v$VERSION-linux-x64.tar.gz
 
 NODE_HOME=$IROOT/node-v$VERSION-linux-x64
 # Upgrade npm to avoid https://github.com/npm/npm/issues/4984
-$NODE_HOME/bin/npm install -g npm
+# DISABLED FOR NODE 6 because the npm update line was breaking the install
+# $NODE_HOME/bin/npm install -g npm
 
 echo "export NODE_ENV=production" > $IROOT/node.installed
 echo "export NODE_HOME=${NODE_HOME}" >> $IROOT/node.installed