Commit f4d23364 authored by zeke's avatar zeke

simplify deploy output

parent 54730a4e
......@@ -12,16 +12,11 @@ source $BIN_DIR/common.sh
trap cat_npm_debug_log EXIT
status "Downloading node v$NODE_VERSION"
echo "$NODE_URL" | indent
tar_download $NODE_URL $BUILD_DIR
status "Moving node and npm to build directory"
status "Adding node and npm to \$PATH"
mv $BUILD_DIR/node-v$NODE_VERSION-linux-x64 $BUILD_DIR/node
status "Making node and npm executable"
chmod +x $BUILD_DIR/node/bin/*
status "Adding node and npm to the \$PATH"
PATH=$PATH:$BUILD_DIR/node/bin
status "Installing dependencies with npm"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment