Skip to content

Commit c8b5517

Browse files
committed
[Fix] avoid bash-specific syntax
Fixes #3499
1 parent db0b085 commit c8b5517

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

nvm.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -444,8 +444,7 @@ fi
444444
if [ -z "${NVM_DIR-}" ]; then
445445
# shellcheck disable=SC2128
446446
if [ -n "${BASH_SOURCE-}" ]; then
447-
# shellcheck disable=SC2169,SC3054
448-
NVM_SCRIPT_SOURCE="${BASH_SOURCE[0]}"
447+
NVM_SCRIPT_SOURCE="${BASH_SOURCE}"
449448
fi
450449
# shellcheck disable=SC2086
451450
NVM_DIR="$(nvm_cd ${NVM_CD_FLAGS} "$(dirname "${NVM_SCRIPT_SOURCE:-$0}")" >/dev/null && \pwd)"

0 commit comments

Comments
 (0)