mirror of https://github.com/grpc/grpc-node.git
Removing bashisms.
This commit is contained in:
parent
838a0d7711
commit
f3729477ef
|
@ -17,9 +17,9 @@
|
||||||
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash
|
||||||
|
|
||||||
# Load NVM
|
# Load NVM
|
||||||
source ~/.nvm/nvm.sh
|
. ~/.nvm/nvm.sh
|
||||||
|
|
||||||
node_versions=( 6 7 8 )
|
node_versions="6 7 8"
|
||||||
|
|
||||||
# TODO(mlumish): Add electron tests
|
# TODO(mlumish): Add electron tests
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ node_versions=( 6 7 8 )
|
||||||
npm install
|
npm install
|
||||||
./node_modules/.bin/gulp setup
|
./node_modules/.bin/gulp setup
|
||||||
|
|
||||||
for version in ${node_versions[@]}
|
for version in ${node_versions}
|
||||||
do
|
do
|
||||||
nvm install $version
|
nvm install $version
|
||||||
# Rebuild libraries and run tests
|
# Rebuild libraries and run tests
|
||||||
|
|
Loading…
Reference in New Issue