Update setup-node-ubuntu.bash

This commit is contained in:
AJ ONeal 2017-05-15 21:54:35 -06:00
parent 24b68d4f90
commit 1bc7b66208
1 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,14 @@
#!/bin/bash
if [ -z "$NODE_PATH" ]; then
set -e
set -u
set -o pipefail
if [ -z "${PREFIX-}" ]; then
PREFIX=""
fi
if [ -n "$NODE_PATH" ]; then
node_install_path=$(dirname $(dirname $NODE_PATH))
else
node_install_path=$PREFIX/usr/local