diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2023-02-11 13:31:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-11 13:31:51 +0100 |
commit | 7cbfa6a8dd7fdc453c9ef6ac38d3bc4913db521c (patch) | |
tree | d668fcd46187e20e66ffecd4d8b4b5a1fc0a4e79 | |
parent | 2cf1425e8bc5d3143b6e001e82a034a794e8a206 (diff) | |
parent | eebb489fb75b620469fecde8f233577bfbdbd9bb (diff) | |
download | searxng-7cbfa6a8dd7fdc453c9ef6ac38d3bc4913db521c.tar.gz searxng-7cbfa6a8dd7fdc453c9ef6ac38d3bc4913db521c.zip |
Merge pull request #2182 from return42/fix-make-nvm
[fix] make nvm.env exit with error when VERBOSE is unset
-rwxr-xr-x | utils/lib_nvm.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/utils/lib_nvm.sh b/utils/lib_nvm.sh index 6297d286d..aaea5cd31 100755 --- a/utils/lib_nvm.sh +++ b/utils/lib_nvm.sh @@ -27,6 +27,7 @@ nvm.env() { source "${NVM_DIR}/nvm.sh" source "${NVM_DIR}/bash_completion" [ "$VERBOSE" = "1" ] && info_msg "sourced NVM environment from ${NVM_DIR}" + return 0 } nvm.is_installed() { @@ -102,11 +103,15 @@ EOF nvm.install() { local NVM_VERSION_TAG info_msg "install (update) NVM at ${NVM_DIR}" - if [[ -d "${NVM_DIR}" ]] ; then + if nvm.is_installed; then info_msg "already cloned at: ${NVM_DIR}" pushd "${NVM_DIR}" &> /dev/null git fetch --all | prefix_stdout " ${_Yellow}||${_creset} " else + # delete any leftovers from previos installations + if nvm.is_local; then + rm -rf "${NVM_DIR}" + fi info_msg "clone: ${NVM_GIT_URL}" git clone "${NVM_GIT_URL}" "${NVM_DIR}" 2>&1 | prefix_stdout " ${_Yellow}||${_creset} " pushd "${NVM_DIR}" &> /dev/null |