Skip to content
Snippets Groups Projects
Commit 026ad033 authored by Colton Leekley-Winslow's avatar Colton Leekley-Winslow
Browse files

remove verbose option from nodejs tar

parent ae31a12d
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ fi
if [ ! -f "$SCITRAN_RUNTIME_PATH/bin/node" ]; then
echo "Installing nodejs"
node_source_dir=`mktemp -d`
curl https://nodejs.org/dist/v6.4.0/node-v6.4.0-darwin-x64.tar.gz | tar xvz -C "$node_source_dir"
curl https://nodejs.org/dist/v6.4.0/node-v6.4.0-darwin-x64.tar.gz | tar xz -C "$node_source_dir"
mv $node_source_dir/node-v6.4.0-darwin-x64/bin/* "$SCITRAN_RUNTIME_PATH/bin"
mv $node_source_dir/node-v6.4.0-darwin-x64/lib/* "$SCITRAN_RUNTIME_PATH/lib"
rm -rf "$node_source_dir"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment