You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
305 B
14 lines
305 B
#!/bin/bash |
|
|
|
DIR="$(command cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
|
|
|
. "$DIR/nvm.sh" --no-use |
|
|
|
if [ -n "$NODE_VERSION" ]; then |
|
nvm use $NODE_VERSION > /dev/null || exit 127 |
|
elif ! nvm use >/dev/null 2>&1; then |
|
echo "No NODE_VERSION provided; no .nvmrc file found" >&2 |
|
exit 127 |
|
fi |
|
|
|
exec "$@"
|
|
|