Fixed `nvm_version_greater` has syntax error in zsh-buildin-command `[`
parent
1c85068091
commit
f130d02efc
2
nvm.sh
2
nvm.sh
|
@ -100,7 +100,7 @@ nvm_version_greater() {
|
||||||
LHS=$(echo "$1" | awk -F. '{for (i=1;i<=NF;++i) printf "%010d",$i}')
|
LHS=$(echo "$1" | awk -F. '{for (i=1;i<=NF;++i) printf "%010d",$i}')
|
||||||
local RHS
|
local RHS
|
||||||
RHS=$(echo "$2" | awk -F. '{for (i=1;i<=NF;++i) printf "%010d",$i}')
|
RHS=$(echo "$2" | awk -F. '{for (i=1;i<=NF;++i) printf "%010d",$i}')
|
||||||
[ $LHS \> $RHS ];
|
[ $LHS -gt $RHS ];
|
||||||
}
|
}
|
||||||
|
|
||||||
nvm_version_dir() {
|
nvm_version_dir() {
|
||||||
|
|
Loading…
Reference in New Issue