1
0
Fork 1

Update setup-node-ubuntu.bash

Esse commit está contido em:
AJ ONeal 2017-05-15 21:54:35 -06:00
commit 1bc7b66208
1 arquivos alterados com 9 adições e 1 exclusões

Ver arquivo

@ -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