diff options
author | Bnyro <bnyro@tutanota.com> | 2024-10-09 11:59:31 +0200 |
---|---|---|
committer | Bnyro <bnyro@tutanota.com> | 2024-11-24 12:41:57 +0100 |
commit | f31a3a2053b07b834c5143bd6be4eaf05c1a014d (patch) | |
tree | 9f74011af2301a313b6780e711324efd88435b70 /utils/lib_nvm.sh | |
parent | 0253c10b522fe2e8206db78e37066771ce90cf92 (diff) | |
download | searxng-f31a3a2053b07b834c5143bd6be4eaf05c1a014d.tar.gz searxng-f31a3a2053b07b834c5143bd6be4eaf05c1a014d.zip |
[chore] *: fix typos detected by typos-cli
Diffstat (limited to 'utils/lib_nvm.sh')
-rwxr-xr-x | utils/lib_nvm.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/lib_nvm.sh b/utils/lib_nvm.sh index aaea5cd31..30f7781d7 100755 --- a/utils/lib_nvm.sh +++ b/utils/lib_nvm.sh @@ -36,7 +36,7 @@ nvm.is_installed() { } if [[ -z "${NVM_DIR}" ]]; then - # nvm is not pre-intalled in $HOME. Prepare for using nvm from <repo-root> + # nvm is not pre-installed in $HOME. Prepare for using nvm from <repo-root> NVM_DIR="$(git rev-parse --show-toplevel)/${NVM_LOCAL_FOLDER}" fi export NVM_DIR @@ -93,7 +93,7 @@ nvm.help() { nvm.: use nvm (without dot) to execute nvm commands directly install : install NVM locally at $(git rev-parse --show-toplevel)/${NVM_LOCAL_FOLDER} clean : remove NVM installation - status : prompt some status informations about nvm & node + status : prompt some status information about nvm & node nodejs : install Node.js latest LTS cmd ... : run command ... in NVM environment bash : start bash interpreter with NVM environment sourced @@ -108,7 +108,7 @@ nvm.install() { pushd "${NVM_DIR}" &> /dev/null git fetch --all | prefix_stdout " ${_Yellow}||${_creset} " else - # delete any leftovers from previos installations + # delete any leftovers from previous installations if nvm.is_local; then rm -rf "${NVM_DIR}" fi |