2016-02-14 18:07:10 +08:00
|
|
|
#!/usr/bin/env bash
|
2015-02-08 10:50:10 +08:00
|
|
|
|
2015-05-11 16:46:18 +08:00
|
|
|
{ # this ensures the entire script is downloaded #
|
|
|
|
|
2014-07-06 04:42:44 +08:00
|
|
|
nvm_has() {
|
2014-03-15 11:32:35 +08:00
|
|
|
type "$1" > /dev/null 2>&1
|
|
|
|
}
|
2013-12-23 01:23:59 +08:00
|
|
|
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo() {
|
|
|
|
command printf %s\\n "$*" 2>/dev/null
|
|
|
|
}
|
|
|
|
|
2022-02-09 02:40:11 +08:00
|
|
|
if [ -z "${BASH_VERSION}" ] || [ -n "${ZSH_VERSION}" ]; then
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
nvm_echo >&2 'Error: the install instructions explicitly say to pipe the install script to `bash`; please follow them'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-01-09 01:54:40 +08:00
|
|
|
nvm_grep() {
|
|
|
|
GREP_OPTIONS='' command grep "$@"
|
|
|
|
}
|
|
|
|
|
2019-01-22 13:58:43 +08:00
|
|
|
nvm_default_install_dir() {
|
2019-04-24 15:03:01 +08:00
|
|
|
[ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm"
|
2019-01-22 13:58:43 +08:00
|
|
|
}
|
|
|
|
|
2014-10-31 20:04:26 +08:00
|
|
|
nvm_install_dir() {
|
2018-12-03 13:59:19 +08:00
|
|
|
if [ -n "$NVM_DIR" ]; then
|
2018-08-15 03:45:40 +08:00
|
|
|
printf %s "${NVM_DIR}"
|
|
|
|
else
|
2019-01-22 13:58:43 +08:00
|
|
|
nvm_default_install_dir
|
2018-08-15 03:45:40 +08:00
|
|
|
fi
|
2014-10-31 20:04:26 +08:00
|
|
|
}
|
2012-10-30 07:03:01 +08:00
|
|
|
|
2014-12-29 07:57:18 +08:00
|
|
|
nvm_latest_version() {
|
2022-10-14 07:25:25 +08:00
|
|
|
nvm_echo "v0.39.2"
|
2014-12-29 07:57:18 +08:00
|
|
|
}
|
|
|
|
|
2017-01-01 18:06:02 +08:00
|
|
|
nvm_profile_is_bash_or_zsh() {
|
2017-04-05 05:01:54 +08:00
|
|
|
local TEST_PROFILE
|
|
|
|
TEST_PROFILE="${1-}"
|
|
|
|
case "${TEST_PROFILE-}" in
|
2022-09-22 04:38:50 +08:00
|
|
|
*"/.bashrc" | *"/.bash_profile" | *"/.zshrc" | *"/.zprofile")
|
2017-04-05 05:01:54 +08:00
|
|
|
return
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
return 1
|
|
|
|
;;
|
|
|
|
esac
|
2017-01-01 18:06:02 +08:00
|
|
|
}
|
|
|
|
|
2014-10-31 20:37:59 +08:00
|
|
|
#
|
|
|
|
# Outputs the location to NVM depending on:
|
|
|
|
# * The availability of $NVM_SOURCE
|
|
|
|
# * The method used ("script" or "git" in the script, defaults to "git")
|
2015-02-12 02:52:41 +08:00
|
|
|
# NVM_SOURCE always takes precedence unless the method is "script-nvm-exec"
|
2014-10-31 20:37:59 +08:00
|
|
|
#
|
|
|
|
nvm_source() {
|
2020-12-27 17:09:29 +08:00
|
|
|
local NVM_GITHUB_REPO
|
|
|
|
NVM_GITHUB_REPO="${NVM_INSTALL_GITHUB_REPO:-nvm-sh/nvm}"
|
|
|
|
local NVM_VERSION
|
|
|
|
NVM_VERSION="${NVM_INSTALL_VERSION:-$(nvm_latest_version)}"
|
2014-10-31 20:37:59 +08:00
|
|
|
local NVM_METHOD
|
|
|
|
NVM_METHOD="$1"
|
2015-02-12 02:52:41 +08:00
|
|
|
local NVM_SOURCE_URL
|
|
|
|
NVM_SOURCE_URL="$NVM_SOURCE"
|
|
|
|
if [ "_$NVM_METHOD" = "_script-nvm-exec" ]; then
|
2020-12-27 17:09:29 +08:00
|
|
|
NVM_SOURCE_URL="https://raw.githubusercontent.com/${NVM_GITHUB_REPO}/${NVM_VERSION}/nvm-exec"
|
2017-08-09 01:11:41 +08:00
|
|
|
elif [ "_$NVM_METHOD" = "_script-nvm-bash-completion" ]; then
|
2020-12-27 17:09:29 +08:00
|
|
|
NVM_SOURCE_URL="https://raw.githubusercontent.com/${NVM_GITHUB_REPO}/${NVM_VERSION}/bash_completion"
|
2015-02-12 02:52:41 +08:00
|
|
|
elif [ -z "$NVM_SOURCE_URL" ]; then
|
2014-12-29 07:54:09 +08:00
|
|
|
if [ "_$NVM_METHOD" = "_script" ]; then
|
2020-12-27 17:09:29 +08:00
|
|
|
NVM_SOURCE_URL="https://raw.githubusercontent.com/${NVM_GITHUB_REPO}/${NVM_VERSION}/nvm.sh"
|
2014-12-29 07:54:09 +08:00
|
|
|
elif [ "_$NVM_METHOD" = "_git" ] || [ -z "$NVM_METHOD" ]; then
|
2020-12-27 17:09:29 +08:00
|
|
|
NVM_SOURCE_URL="https://github.com/${NVM_GITHUB_REPO}.git"
|
2014-12-29 07:54:09 +08:00
|
|
|
else
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Unexpected value \"$NVM_METHOD\" for \$NVM_METHOD"
|
2014-12-29 07:54:09 +08:00
|
|
|
return 1
|
|
|
|
fi
|
2014-10-31 20:37:59 +08:00
|
|
|
fi
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "$NVM_SOURCE_URL"
|
2014-10-31 20:37:59 +08:00
|
|
|
}
|
|
|
|
|
2016-07-28 04:43:13 +08:00
|
|
|
#
|
2014-10-13 20:05:06 +08:00
|
|
|
# Node.js version to install
|
|
|
|
#
|
|
|
|
nvm_node_version() {
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "$NODE_VERSION"
|
2014-10-13 20:05:06 +08:00
|
|
|
}
|
|
|
|
|
2014-07-08 06:40:59 +08:00
|
|
|
nvm_download() {
|
2014-07-08 01:04:20 +08:00
|
|
|
if nvm_has "curl"; then
|
2021-01-13 09:26:38 +08:00
|
|
|
curl --fail --compressed -q "$@"
|
2014-07-08 01:04:20 +08:00
|
|
|
elif nvm_has "wget"; then
|
2014-03-26 16:29:05 +08:00
|
|
|
# Emulate curl with wget
|
2021-01-13 09:26:38 +08:00
|
|
|
ARGS=$(nvm_echo "$@" | command sed -e 's/--progress-bar /--progress=bar /' \
|
2018-02-26 05:34:28 +08:00
|
|
|
-e 's/--compressed //' \
|
2021-01-13 09:26:38 +08:00
|
|
|
-e 's/--fail //' \
|
|
|
|
-e 's/-L //' \
|
2018-02-26 05:34:28 +08:00
|
|
|
-e 's/-I /--server-response /' \
|
|
|
|
-e 's/-s /-q /' \
|
2021-01-13 09:26:38 +08:00
|
|
|
-e 's/-sS /-nv /' \
|
2018-02-26 05:34:28 +08:00
|
|
|
-e 's/-o /-O /' \
|
|
|
|
-e 's/-C - /-c /')
|
2016-08-23 15:45:38 +08:00
|
|
|
# shellcheck disable=SC2086
|
|
|
|
eval wget $ARGS
|
2014-03-15 11:32:35 +08:00
|
|
|
fi
|
2014-07-08 01:04:20 +08:00
|
|
|
}
|
2013-06-08 06:42:28 +08:00
|
|
|
|
2014-07-06 04:44:00 +08:00
|
|
|
install_nvm_from_git() {
|
2014-10-31 20:04:26 +08:00
|
|
|
local INSTALL_DIR
|
|
|
|
INSTALL_DIR="$(nvm_install_dir)"
|
2021-01-07 09:50:05 +08:00
|
|
|
local NVM_VERSION
|
|
|
|
NVM_VERSION="${NVM_INSTALL_VERSION:-$(nvm_latest_version)}"
|
|
|
|
if [ -n "${NVM_INSTALL_VERSION:-}" ]; then
|
|
|
|
# Check if version is an existing ref
|
|
|
|
if command git ls-remote "$(nvm_source "git")" "$NVM_VERSION" | nvm_grep -q "$NVM_VERSION" ; then
|
|
|
|
:
|
|
|
|
# Check if version is an existing changeset
|
|
|
|
elif ! nvm_download -o /dev/null "$(nvm_source "script-nvm-exec")"; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Failed to find '$NVM_VERSION' version."
|
2021-01-07 09:50:05 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
2014-10-31 20:04:26 +08:00
|
|
|
|
2021-01-07 09:50:05 +08:00
|
|
|
local fetch_error
|
2014-10-31 20:04:26 +08:00
|
|
|
if [ -d "$INSTALL_DIR/.git" ]; then
|
2021-01-07 09:50:05 +08:00
|
|
|
# Updating repo
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> nvm is already installed in $INSTALL_DIR, trying to update using git"
|
2017-12-09 17:47:38 +08:00
|
|
|
command printf '\r=> '
|
2021-01-07 09:50:05 +08:00
|
|
|
fetch_error="Failed to update nvm with $NVM_VERSION, run 'git fetch' in $INSTALL_DIR yourself."
|
2014-03-15 11:32:35 +08:00
|
|
|
else
|
2021-01-07 09:50:05 +08:00
|
|
|
fetch_error="Failed to fetch origin with $NVM_VERSION. Please report this!"
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Downloading nvm from git to '$INSTALL_DIR'"
|
2017-12-09 17:47:38 +08:00
|
|
|
command printf '\r=> '
|
2016-08-25 15:59:32 +08:00
|
|
|
mkdir -p "${INSTALL_DIR}"
|
|
|
|
if [ "$(ls -A "${INSTALL_DIR}")" ]; then
|
2021-01-07 09:50:05 +08:00
|
|
|
# Initializing repo
|
2016-08-25 15:59:32 +08:00
|
|
|
command git init "${INSTALL_DIR}" || {
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 'Failed to initialize nvm repo. Please report this!'
|
2016-08-25 15:59:32 +08:00
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
command git --git-dir="${INSTALL_DIR}/.git" remote add origin "$(nvm_source)" 2> /dev/null \
|
|
|
|
|| command git --git-dir="${INSTALL_DIR}/.git" remote set-url origin "$(nvm_source)" || {
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 'Failed to add remote "origin" (or set the URL). Please report this!'
|
2016-08-25 15:59:32 +08:00
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
else
|
2021-01-07 09:50:05 +08:00
|
|
|
# Cloning repo
|
|
|
|
command git clone "$(nvm_source)" --depth=1 "${INSTALL_DIR}" || {
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 'Failed to clone nvm repo. Please report this!'
|
2016-08-25 15:59:32 +08:00
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
fi
|
2014-03-15 11:32:35 +08:00
|
|
|
fi
|
2021-01-07 09:50:05 +08:00
|
|
|
# Try to fetch tag
|
|
|
|
if command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" fetch origin tag "$NVM_VERSION" --depth=1 2>/dev/null; then
|
|
|
|
:
|
|
|
|
# Fetch given version
|
|
|
|
elif ! command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" fetch origin "$NVM_VERSION" --depth=1; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "$fetch_error"
|
2021-01-07 09:50:05 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
command git -c advice.detachedHead=false --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" checkout -f --quiet FETCH_HEAD || {
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Failed to checkout the given version $NVM_VERSION. Please report this!"
|
2021-01-07 09:50:05 +08:00
|
|
|
exit 2
|
|
|
|
}
|
2018-12-03 13:59:19 +08:00
|
|
|
if [ -n "$(command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" show-ref refs/heads/master)" ]; then
|
2021-10-23 21:23:55 +08:00
|
|
|
if command git --no-pager --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" branch --quiet 2>/dev/null; then
|
|
|
|
command git --no-pager --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" branch --quiet -D master >/dev/null 2>&1
|
2015-04-22 15:40:27 +08:00
|
|
|
else
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Your version of git is out of date. Please update it!"
|
2021-10-23 21:23:55 +08:00
|
|
|
command git --no-pager --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" branch -D master >/dev/null 2>&1
|
2015-04-22 15:40:27 +08:00
|
|
|
fi
|
2015-03-06 07:21:46 +08:00
|
|
|
fi
|
2016-09-17 08:51:50 +08:00
|
|
|
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Compressing and cleaning up git repository"
|
2017-07-14 00:37:58 +08:00
|
|
|
if ! command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" reflog expire --expire=now --all; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Your version of git is out of date. Please update it!"
|
2017-07-14 00:37:58 +08:00
|
|
|
fi
|
2017-07-11 09:19:02 +08:00
|
|
|
if ! command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" gc --auto --aggressive --prune=now ; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Your version of git is out of date. Please update it!"
|
2016-09-17 08:51:50 +08:00
|
|
|
fi
|
2014-09-26 13:10:48 +08:00
|
|
|
return
|
2014-03-15 11:32:35 +08:00
|
|
|
}
|
|
|
|
|
2014-10-13 20:05:06 +08:00
|
|
|
#
|
|
|
|
# Automatically install Node.js
|
|
|
|
#
|
|
|
|
nvm_install_node() {
|
2017-11-30 21:47:42 +08:00
|
|
|
local NODE_VERSION_LOCAL
|
|
|
|
NODE_VERSION_LOCAL="$(nvm_node_version)"
|
2014-10-13 20:05:06 +08:00
|
|
|
|
2017-11-30 21:47:42 +08:00
|
|
|
if [ -z "$NODE_VERSION_LOCAL" ]; then
|
2014-10-13 20:05:06 +08:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Installing Node.js version $NODE_VERSION_LOCAL"
|
2017-11-30 21:47:42 +08:00
|
|
|
nvm install "$NODE_VERSION_LOCAL"
|
2014-10-13 20:05:06 +08:00
|
|
|
local CURRENT_NVM_NODE
|
|
|
|
|
|
|
|
CURRENT_NVM_NODE="$(nvm_version current)"
|
2017-11-30 21:47:42 +08:00
|
|
|
if [ "$(nvm_version "$NODE_VERSION_LOCAL")" == "$CURRENT_NVM_NODE" ]; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Node.js version $NODE_VERSION_LOCAL has been successfully installed"
|
2014-10-13 20:05:06 +08:00
|
|
|
else
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Failed to install Node.js $NODE_VERSION_LOCAL"
|
2014-10-13 20:05:06 +08:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-07-06 04:44:00 +08:00
|
|
|
install_nvm_as_script() {
|
2014-10-31 20:04:26 +08:00
|
|
|
local INSTALL_DIR
|
|
|
|
INSTALL_DIR="$(nvm_install_dir)"
|
2015-02-12 02:52:41 +08:00
|
|
|
local NVM_SOURCE_LOCAL
|
2017-08-09 01:11:41 +08:00
|
|
|
NVM_SOURCE_LOCAL="$(nvm_source script)"
|
2014-11-23 02:31:42 +08:00
|
|
|
local NVM_EXEC_SOURCE
|
2017-08-09 01:11:41 +08:00
|
|
|
NVM_EXEC_SOURCE="$(nvm_source script-nvm-exec)"
|
|
|
|
local NVM_BASH_COMPLETION_SOURCE
|
|
|
|
NVM_BASH_COMPLETION_SOURCE="$(nvm_source script-nvm-bash-completion)"
|
2014-03-15 11:32:35 +08:00
|
|
|
|
2014-10-31 20:04:26 +08:00
|
|
|
# Downloading to $INSTALL_DIR
|
|
|
|
mkdir -p "$INSTALL_DIR"
|
|
|
|
if [ -f "$INSTALL_DIR/nvm.sh" ]; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> nvm is already installed in $INSTALL_DIR, trying to update the script"
|
2014-03-15 11:32:35 +08:00
|
|
|
else
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Downloading nvm as script to '$INSTALL_DIR'"
|
2014-03-15 11:32:35 +08:00
|
|
|
fi
|
2014-10-31 20:04:26 +08:00
|
|
|
nvm_download -s "$NVM_SOURCE_LOCAL" -o "$INSTALL_DIR/nvm.sh" || {
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Failed to download '$NVM_SOURCE_LOCAL'"
|
2014-03-15 11:32:35 +08:00
|
|
|
return 1
|
2017-04-05 04:54:38 +08:00
|
|
|
} &
|
2016-08-05 15:23:09 +08:00
|
|
|
nvm_download -s "$NVM_EXEC_SOURCE" -o "$INSTALL_DIR/nvm-exec" || {
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Failed to download '$NVM_EXEC_SOURCE'"
|
2014-11-23 02:31:42 +08:00
|
|
|
return 2
|
2017-04-05 04:54:38 +08:00
|
|
|
} &
|
2017-08-09 01:11:41 +08:00
|
|
|
nvm_download -s "$NVM_BASH_COMPLETION_SOURCE" -o "$INSTALL_DIR/bash_completion" || {
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Failed to download '$NVM_BASH_COMPLETION_SOURCE'"
|
2017-08-09 01:11:41 +08:00
|
|
|
return 2
|
|
|
|
} &
|
2018-02-20 04:05:47 +08:00
|
|
|
for job in $(jobs -p | command sort)
|
2017-04-05 04:54:38 +08:00
|
|
|
do
|
|
|
|
wait "$job" || return $?
|
|
|
|
done
|
2016-08-05 15:23:09 +08:00
|
|
|
chmod a+x "$INSTALL_DIR/nvm-exec" || {
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "Failed to mark '$INSTALL_DIR/nvm-exec' as executable"
|
2014-11-23 02:31:42 +08:00
|
|
|
return 3
|
|
|
|
}
|
2014-03-15 11:32:35 +08:00
|
|
|
}
|
|
|
|
|
2017-04-03 23:06:04 +08:00
|
|
|
nvm_try_profile() {
|
|
|
|
if [ -z "${1-}" ] || [ ! -f "${1}" ]; then
|
|
|
|
return 1
|
|
|
|
fi
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "${1}"
|
2017-04-03 23:06:04 +08:00
|
|
|
}
|
|
|
|
|
2014-10-29 20:05:11 +08:00
|
|
|
#
|
|
|
|
# Detect profile file if not specified as environment variable
|
|
|
|
# (eg: PROFILE=~/.myprofile)
|
|
|
|
# The echo'ed path is guaranteed to be an existing file
|
|
|
|
# Otherwise, an empty string is returned
|
|
|
|
#
|
|
|
|
nvm_detect_profile() {
|
2018-05-03 23:22:07 +08:00
|
|
|
if [ "${PROFILE-}" = '/dev/null' ]; then
|
|
|
|
# the user has specifically requested NOT to have nvm touch their profile
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2016-08-23 15:45:38 +08:00
|
|
|
if [ -n "${PROFILE}" ] && [ -f "${PROFILE}" ]; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "${PROFILE}"
|
2015-09-16 07:34:02 +08:00
|
|
|
return
|
|
|
|
fi
|
2015-07-19 08:01:06 +08:00
|
|
|
|
|
|
|
local DETECTED_PROFILE
|
|
|
|
DETECTED_PROFILE=''
|
|
|
|
|
2021-08-12 21:51:32 +08:00
|
|
|
if [ "${SHELL#*bash}" != "$SHELL" ]; then
|
2015-07-19 08:01:06 +08:00
|
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
|
|
DETECTED_PROFILE="$HOME/.bashrc"
|
|
|
|
elif [ -f "$HOME/.bash_profile" ]; then
|
|
|
|
DETECTED_PROFILE="$HOME/.bash_profile"
|
|
|
|
fi
|
2021-08-12 21:51:32 +08:00
|
|
|
elif [ "${SHELL#*zsh}" != "$SHELL" ]; then
|
|
|
|
if [ -f "$HOME/.zshrc" ]; then
|
|
|
|
DETECTED_PROFILE="$HOME/.zshrc"
|
2022-09-22 04:38:50 +08:00
|
|
|
elif [ -f "$HOME/.zprofile" ]; then
|
|
|
|
DETECTED_PROFILE="$HOME/.zprofile"
|
2021-08-12 21:51:32 +08:00
|
|
|
fi
|
2015-07-19 08:01:06 +08:00
|
|
|
fi
|
|
|
|
|
2015-12-28 13:34:38 +08:00
|
|
|
if [ -z "$DETECTED_PROFILE" ]; then
|
2022-09-22 04:38:50 +08:00
|
|
|
for EACH_PROFILE in ".profile" ".bashrc" ".bash_profile" ".zprofile" ".zshrc"
|
2017-04-03 23:06:04 +08:00
|
|
|
do
|
|
|
|
if DETECTED_PROFILE="$(nvm_try_profile "${HOME}/${EACH_PROFILE}")"; then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2015-07-19 08:01:06 +08:00
|
|
|
fi
|
|
|
|
|
2018-12-03 13:59:19 +08:00
|
|
|
if [ -n "$DETECTED_PROFILE" ]; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "$DETECTED_PROFILE"
|
2014-10-29 20:05:11 +08:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-01-24 10:38:50 +08:00
|
|
|
#
|
|
|
|
# Check whether the user has any globally-installed npm modules in their system
|
|
|
|
# Node, and warn them if so.
|
|
|
|
#
|
|
|
|
nvm_check_global_modules() {
|
2020-11-17 08:49:02 +08:00
|
|
|
local NPM_COMMAND
|
|
|
|
NPM_COMMAND="$(command -v npm 2>/dev/null)" || return 0
|
2021-11-20 00:53:43 +08:00
|
|
|
[ -n "${NVM_DIR}" ] && [ -z "${NPM_COMMAND%%"$NVM_DIR"/*}" ] && return 0
|
2015-02-03 10:42:12 +08:00
|
|
|
|
|
|
|
local NPM_VERSION
|
|
|
|
NPM_VERSION="$(npm --version)"
|
2015-02-08 11:12:46 +08:00
|
|
|
NPM_VERSION="${NPM_VERSION:--1}"
|
2015-02-08 16:43:05 +08:00
|
|
|
[ "${NPM_VERSION%%[!-0-9]*}" -gt 0 ] || return 0
|
2015-02-03 10:42:12 +08:00
|
|
|
|
2015-01-24 10:38:50 +08:00
|
|
|
local NPM_GLOBAL_MODULES
|
2015-02-08 16:43:05 +08:00
|
|
|
NPM_GLOBAL_MODULES="$(
|
|
|
|
npm list -g --depth=0 |
|
2017-04-05 04:58:34 +08:00
|
|
|
command sed -e '/ npm@/d' -e '/ (empty)$/d'
|
2015-02-08 16:43:05 +08:00
|
|
|
)"
|
2015-02-05 06:39:57 +08:00
|
|
|
|
2015-01-24 10:38:50 +08:00
|
|
|
local MODULE_COUNT
|
2015-02-05 06:39:57 +08:00
|
|
|
MODULE_COUNT="$(
|
2016-08-23 15:45:38 +08:00
|
|
|
command printf %s\\n "$NPM_GLOBAL_MODULES" |
|
|
|
|
command sed -ne '1!p' | # Remove the first line
|
2018-02-20 04:05:47 +08:00
|
|
|
wc -l | command tr -d ' ' # Count entries
|
2015-02-05 06:39:57 +08:00
|
|
|
)"
|
2015-01-24 10:38:50 +08:00
|
|
|
|
2016-08-23 15:45:38 +08:00
|
|
|
if [ "${MODULE_COUNT}" != '0' ]; then
|
2016-10-28 11:23:37 +08:00
|
|
|
# shellcheck disable=SC2016
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo '=> You currently have modules installed globally with `npm`. These will no'
|
2016-10-28 11:23:37 +08:00
|
|
|
# shellcheck disable=SC2016
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo '=> longer be linked to the active version of Node when you install a new node'
|
2016-10-28 11:23:37 +08:00
|
|
|
# shellcheck disable=SC2016
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo '=> with `nvm`; and they may (depending on how you construct your `$PATH`)'
|
2016-10-28 11:23:37 +08:00
|
|
|
# shellcheck disable=SC2016
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo '=> override the binaries of modules installed with `nvm`:'
|
|
|
|
nvm_echo
|
2015-01-24 10:38:50 +08:00
|
|
|
|
2016-08-23 15:45:38 +08:00
|
|
|
command printf %s\\n "$NPM_GLOBAL_MODULES"
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo '=> If you wish to uninstall them at a later point (or re-install them under your'
|
2016-10-28 11:23:37 +08:00
|
|
|
# shellcheck disable=SC2016
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo '=> `nvm` Nodes), you can remove them from the system Node as follows:'
|
|
|
|
nvm_echo
|
|
|
|
nvm_echo ' $ nvm use system'
|
|
|
|
nvm_echo ' $ npm uninstall -g a_module'
|
|
|
|
nvm_echo
|
2015-01-24 10:38:50 +08:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-10-23 01:43:39 +08:00
|
|
|
nvm_do_install() {
|
2018-01-07 01:34:11 +08:00
|
|
|
if [ -n "${NVM_DIR-}" ] && ! [ -d "${NVM_DIR}" ]; then
|
2019-01-22 13:58:43 +08:00
|
|
|
if [ -e "${NVM_DIR}" ]; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "File \"${NVM_DIR}\" has the same name as installation directory."
|
2019-01-22 13:58:43 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${NVM_DIR}" = "$(nvm_default_install_dir)" ]; then
|
|
|
|
mkdir "${NVM_DIR}"
|
2019-01-21 08:15:02 +08:00
|
|
|
else
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "You have \$NVM_DIR set to \"${NVM_DIR}\", but that directory does not exist. Check your profile files and environment."
|
2019-01-21 08:15:02 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
2018-01-07 01:34:11 +08:00
|
|
|
fi
|
2022-10-06 23:13:47 +08:00
|
|
|
# Disable the optional which check, https://www.shellcheck.net/wiki/SC2230
|
|
|
|
# shellcheck disable=SC2230
|
2021-11-28 14:16:14 +08:00
|
|
|
if nvm_has xcode-select && [ "$(xcode-select -p >/dev/null 2>/dev/null ; echo $?)" = '2' ] && [ "$(which git)" = '/usr/bin/git' ] && [ "$(which curl)" = '/usr/bin/curl' ]; then
|
|
|
|
nvm_echo >&2 'You may be on a Mac, and need to install the Xcode Command Line Developer Tools.'
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
nvm_echo >&2 'If so, run `xcode-select --install` and try again. If not, please report this!'
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-08-24 15:50:08 +08:00
|
|
|
if [ -z "${METHOD}" ]; then
|
2014-10-23 01:43:39 +08:00
|
|
|
# Autodetect install method
|
2016-08-24 15:50:08 +08:00
|
|
|
if nvm_has git; then
|
2014-10-23 01:43:39 +08:00
|
|
|
install_nvm_from_git
|
2021-11-26 06:26:35 +08:00
|
|
|
elif nvm_has curl || nvm_has wget; then
|
2014-10-23 01:43:39 +08:00
|
|
|
install_nvm_as_script
|
|
|
|
else
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 'You need git, curl, or wget to install nvm'
|
2014-10-23 01:43:39 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
2016-08-24 15:50:08 +08:00
|
|
|
elif [ "${METHOD}" = 'git' ]; then
|
|
|
|
if ! nvm_has git; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "You need git to install nvm"
|
2014-10-23 01:43:39 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
2014-07-06 04:44:00 +08:00
|
|
|
install_nvm_from_git
|
2016-08-24 15:50:08 +08:00
|
|
|
elif [ "${METHOD}" = 'script' ]; then
|
2021-11-30 23:07:22 +08:00
|
|
|
if ! nvm_has curl && ! nvm_has wget; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "You need curl or wget to install nvm"
|
2014-10-23 01:43:39 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
2014-07-06 04:44:00 +08:00
|
|
|
install_nvm_as_script
|
2018-10-03 01:46:26 +08:00
|
|
|
else
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo >&2 "The environment variable \$METHOD is set to \"${METHOD}\", which is not recognized as a valid installation method."
|
2018-10-03 01:46:26 +08:00
|
|
|
exit 1
|
2014-03-26 16:08:37 +08:00
|
|
|
fi
|
2012-10-30 07:03:01 +08:00
|
|
|
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo
|
2012-10-30 07:03:01 +08:00
|
|
|
|
2014-10-29 20:05:11 +08:00
|
|
|
local NVM_PROFILE
|
2016-08-23 15:45:38 +08:00
|
|
|
NVM_PROFILE="$(nvm_detect_profile)"
|
2017-02-12 16:32:49 +08:00
|
|
|
local PROFILE_INSTALL_DIR
|
2018-02-20 04:05:47 +08:00
|
|
|
PROFILE_INSTALL_DIR="$(nvm_install_dir | command sed "s:^$HOME:\$HOME:")"
|
2014-10-23 01:43:39 +08:00
|
|
|
|
2017-12-09 17:47:38 +08:00
|
|
|
SOURCE_STR="\\nexport NVM_DIR=\"${PROFILE_INSTALL_DIR}\"\\n[ -s \"\$NVM_DIR/nvm.sh\" ] && \\. \"\$NVM_DIR/nvm.sh\" # This loads nvm\\n"
|
2018-04-10 04:13:02 +08:00
|
|
|
|
2017-12-09 17:47:38 +08:00
|
|
|
# shellcheck disable=SC2016
|
|
|
|
COMPLETION_STR='[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion\n'
|
2015-05-23 14:07:34 +08:00
|
|
|
BASH_OR_ZSH=false
|
2014-10-23 01:43:39 +08:00
|
|
|
|
2016-08-23 15:45:38 +08:00
|
|
|
if [ -z "${NVM_PROFILE-}" ] ; then
|
2017-09-07 17:51:24 +08:00
|
|
|
local TRIED_PROFILE
|
|
|
|
if [ -n "${PROFILE}" ]; then
|
|
|
|
TRIED_PROFILE="${NVM_PROFILE} (as defined in \$PROFILE), "
|
|
|
|
fi
|
2022-09-22 04:38:50 +08:00
|
|
|
nvm_echo "=> Profile not found. Tried ${TRIED_PROFILE-}~/.bashrc, ~/.bash_profile, ~/.zprofile, ~/.zshrc, and ~/.profile."
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Create one of them and run this script again"
|
|
|
|
nvm_echo " OR"
|
|
|
|
nvm_echo "=> Append the following lines to the correct file yourself:"
|
2016-08-23 15:45:38 +08:00
|
|
|
command printf "${SOURCE_STR}"
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo
|
2013-12-23 01:05:20 +08:00
|
|
|
else
|
2017-01-01 18:06:02 +08:00
|
|
|
if nvm_profile_is_bash_or_zsh "${NVM_PROFILE-}"; then
|
|
|
|
BASH_OR_ZSH=true
|
|
|
|
fi
|
2016-08-24 05:32:28 +08:00
|
|
|
if ! command grep -qc '/nvm.sh' "$NVM_PROFILE"; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Appending nvm source string to $NVM_PROFILE"
|
2015-05-23 14:07:34 +08:00
|
|
|
command printf "${SOURCE_STR}" >> "$NVM_PROFILE"
|
2014-10-23 01:43:39 +08:00
|
|
|
else
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> nvm source string already in ${NVM_PROFILE}"
|
2015-05-23 14:07:34 +08:00
|
|
|
fi
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
if ${BASH_OR_ZSH} && ! command grep -qc '$NVM_DIR/bash_completion' "$NVM_PROFILE"; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Appending bash_completion source string to $NVM_PROFILE"
|
2015-05-23 14:07:34 +08:00
|
|
|
command printf "$COMPLETION_STR" >> "$NVM_PROFILE"
|
|
|
|
else
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> bash_completion source string already in ${NVM_PROFILE}"
|
2014-10-23 01:43:39 +08:00
|
|
|
fi
|
2013-12-23 01:05:20 +08:00
|
|
|
fi
|
2015-05-23 14:07:34 +08:00
|
|
|
if ${BASH_OR_ZSH} && [ -z "${NVM_PROFILE-}" ] ; then
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Please also append the following lines to the if you are using bash/zsh shell:"
|
2015-05-23 14:07:34 +08:00
|
|
|
command printf "${COMPLETION_STR}"
|
|
|
|
fi
|
2012-10-30 07:03:01 +08:00
|
|
|
|
2016-07-28 05:26:05 +08:00
|
|
|
# Source nvm
|
2016-08-23 15:45:38 +08:00
|
|
|
# shellcheck source=/dev/null
|
2017-02-12 16:32:49 +08:00
|
|
|
\. "$(nvm_install_dir)/nvm.sh"
|
2014-10-13 20:05:06 +08:00
|
|
|
|
2015-01-24 10:38:50 +08:00
|
|
|
nvm_check_global_modules
|
2015-08-14 08:09:22 +08:00
|
|
|
|
2014-10-13 20:05:06 +08:00
|
|
|
nvm_install_node
|
|
|
|
|
2014-10-23 01:43:39 +08:00
|
|
|
nvm_reset
|
2016-07-28 05:09:02 +08:00
|
|
|
|
2021-03-18 00:07:15 +08:00
|
|
|
nvm_echo "=> Close and reopen your terminal to start using nvm or run the following to use it now:"
|
2015-05-23 14:07:34 +08:00
|
|
|
command printf "${SOURCE_STR}"
|
|
|
|
if ${BASH_OR_ZSH} ; then
|
2017-01-01 18:06:50 +08:00
|
|
|
command printf "${COMPLETION_STR}"
|
2015-05-23 14:07:34 +08:00
|
|
|
fi
|
2014-10-23 01:43:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Unsets the various functions defined
|
|
|
|
# during the execution of the install script
|
|
|
|
#
|
|
|
|
nvm_reset() {
|
2017-04-03 23:06:04 +08:00
|
|
|
unset -f nvm_has nvm_install_dir nvm_latest_version nvm_profile_is_bash_or_zsh \
|
|
|
|
nvm_source nvm_node_version nvm_download install_nvm_from_git nvm_install_node \
|
|
|
|
install_nvm_as_script nvm_try_profile nvm_detect_profile nvm_check_global_modules \
|
2021-01-09 01:54:40 +08:00
|
|
|
nvm_do_install nvm_reset nvm_default_install_dir nvm_grep
|
2014-10-23 01:43:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[ "_$NVM_ENV" = "_testing" ] || nvm_do_install
|
2015-05-11 16:46:18 +08:00
|
|
|
|
|
|
|
} # this ensures the entire script is downloaded #
|