From f3729477eff9ae5df137a01183dfb8c7e33d40c0 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Fri, 15 Sep 2017 18:45:18 +0200 Subject: [PATCH] Removing bashisms. --- kokoro-linux.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kokoro-linux.sh b/kokoro-linux.sh index 3053da4b..c555a5d0 100755 --- a/kokoro-linux.sh +++ b/kokoro-linux.sh @@ -17,9 +17,9 @@ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash # Load NVM -source ~/.nvm/nvm.sh +. ~/.nvm/nvm.sh -node_versions=( 6 7 8 ) +node_versions="6 7 8" # TODO(mlumish): Add electron tests @@ -27,7 +27,7 @@ node_versions=( 6 7 8 ) npm install ./node_modules/.bin/gulp setup -for version in ${node_versions[@]} +for version in ${node_versions} do nvm install $version # Rebuild libraries and run tests