Commit 4d9c2ac4 by Dane Springmeyer

fix syntax

parent 35aeadd3
...@@ -22,9 +22,9 @@ if [[ ! -d ../.nvm ]]; then ...@@ -22,9 +22,9 @@ if [[ ! -d ../.nvm ]]; then
fi fi
set +u set +u
source ../.nvm/nvm.sh source ../.nvm/nvm.sh
set -u
nvm install $NODE_VERSION nvm install $NODE_VERSION
nvm use $NODE_VERSION nvm use $NODE_VERSION
set -u
node --version node --version
npm --version npm --version
...@@ -49,7 +49,7 @@ npm test ...@@ -49,7 +49,7 @@ npm test
platform=$(uname -s | sed "y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/") platform=$(uname -s | sed "y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/")
if [[ $(uname -s) == 'Linux' ]]; then if [[ $(uname -s) == 'Linux' ]]; then
sudo apt-get -y install gcc-multilib g++-multilib; fi sudo apt-get -y install gcc-multilib g++-multilib
# node v0.8 and above provide pre-built 32 bit and 64 bit binaries # node v0.8 and above provide pre-built 32 bit and 64 bit binaries
# so here we use the 32 bit ones to also test 32 bit builds # so here we use the 32 bit ones to also test 32 bit builds
NVER=`node -v` NVER=`node -v`
......
...@@ -7,9 +7,9 @@ if [[ ! -d ../.nvm ]]; then ...@@ -7,9 +7,9 @@ if [[ ! -d ../.nvm ]]; then
fi fi
set +u set +u
source ../.nvm/nvm.sh source ../.nvm/nvm.sh
set -u
nvm install 0.10 nvm install 0.10
nvm use 0.10 nvm use 0.10
set -u
node --version node --version
npm --version npm --version
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment