Update setup-min.sh
This commit is contained in:
parent
e93042403c
commit
b6c4f023f5
10
setup-min.sh
10
setup-min.sh
|
@ -12,7 +12,15 @@
|
||||||
# curl -fsSL https://example.com/setup-min.bash | bash
|
# curl -fsSL https://example.com/setup-min.bash | bash
|
||||||
# wget -nv https://example.com/setup-min.bash -O - | bash
|
# wget -nv https://example.com/setup-min.bash -O - | 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))
|
node_install_path=$(dirname $(dirname $NODE_PATH))
|
||||||
else
|
else
|
||||||
node_install_path=$PREFIX/usr/local
|
node_install_path=$PREFIX/usr/local
|
||||||
|
|
Loading…
Reference in New Issue