We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uninstall
NVM_DEBUG
1 parent 4626d1a commit 096ba0dCopy full SHA for 096ba0d
nvm.sh
@@ -2327,7 +2327,10 @@ nvm_check_file_permissions() {
2327
nvm_is_zsh && setopt local_options nonomatch
2328
for FILE in "$1"/* "$1"/.[!.]* "$1"/..?* ; do
2329
if [ -d "$FILE" ]; then
2330
- if ! nvm_check_file_permissions "$FILE"; then
+ if [ -n "${NVM_DEBUG-}" ]; then
2331
+ nvm_err "${FILE}"
2332
+ fi
2333
+ if ! nvm_check_file_permissions "${FILE}"; then
2334
return 2
2335
fi
2336
elif [ -e "$FILE" ] && [ ! -w "$FILE" ] && [ ! -O "$FILE" ]; then
0 commit comments