Skip to content

Commit db66372

Browse files
authored
Silence environment configuration commands. Fixes #1621 (#1622)
1 parent baf4cab commit db66372

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/common/compute/backends/sciserver-compute/files/prepare-and-run.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
RESULTS_DIR=$(pwd)
22
JOB_DIR=$1
33

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

89
cd $JOB_DIR;
910

0 commit comments

Comments
 (0)