mirror of
https://github.com/nvm-sh/nvm.git
synced 2026-04-09 14:34:52 +08:00
[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:
4
test/fast/Aliases/percent in alias name/setup
Executable file
4
test/fast/Aliases/percent in alias name/setup
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo v0.0.1 > ../../../../alias/test-%s-alias
|
||||
echo test-%s-alias > ../../../../alias/test-pct-chain
|
||||
Reference in New Issue
Block a user