mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 22:31:51 +00:00
Oops, the string passed to awk
isn't the same as a shell command.
Fixes #808.
This commit is contained in:
parent
58ffa407c2
commit
b7e2d7d24d
2
nvm.sh
2
nvm.sh
@ -317,7 +317,7 @@ nvm_is_valid_version() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
nvm_normalize_version() {
|
nvm_normalize_version() {
|
||||||
echo "${1#v}" | command awk -F. '{ command printf("%d%06d%06d\n", $1,$2,$3); }'
|
echo "${1#v}" | command awk -F. '{ printf("%d%06d%06d\n", $1,$2,$3); }'
|
||||||
}
|
}
|
||||||
|
|
||||||
nvm_ensure_version_prefix() {
|
nvm_ensure_version_prefix() {
|
||||||
|
Loading…
Reference in New Issue
Block a user