Skip to content

Commit

Permalink
Silence environment configuration commands. Fixes #1621
Browse files Browse the repository at this point in the history
  • Loading branch information
brollb committed Apr 9, 2020
1 parent 3339cdc commit b2d7e31
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
RESULTS_DIR=$(pwd)
JOB_DIR=$1

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
nvm install 12
echo "Configuring environment on SciServer..."
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash > /dev/null
export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" > /dev/null
nvm install 12 > /dev/null

cd $JOB_DIR;
npm install requirejs@2.3.5 rimraf@^2.4.0 superagent@3.8.3 @babel/runtime@^7.7.2 q@1.5.1 node-fetch@2.6.0 agentkeepalive@3.4.1 aws-sdk@2.624.0 > /dev/null
Expand Down

0 comments on commit b2d7e31

Please sign in to comment.