[Fix] nvm_resolve_local_alias: avoid using variable as printf format string

Using a variable as the format string means `%` characters in alias names would be interpreted as format specifiers.
Use `%b` format with the variable as an argument to safely interpret `\n` escapes.

Bug introduced in 9b91734f0b.
This commit is contained in:
Jordan Harband
2026-03-14 10:16:25 -07:00
parent 3c48015986
commit d2fca5f0ec
5 changed files with 43 additions and 1 deletions

2
nvm.sh
View File

@@ -1368,7 +1368,7 @@ nvm_resolve_alias() {
break
fi
if command printf "${SEEN_ALIASES}" | nvm_grep -q -e "^${ALIAS_TEMP}$"; then
if command printf '%b' "${SEEN_ALIASES}" | nvm_grep -q -e "^${ALIAS_TEMP}$"; then
ALIAS="∞"
break
fi