mirror of
https://github.com/lukechilds/zsh-nvm.git
synced 2025-01-30 09:47:14 +08:00
perf: dont duplicate work when loading global binaries
This commit is contained in:
parent
23067bd9bb
commit
0566a38094
@ -25,11 +25,11 @@ _zsh_nvm_install() {
|
|||||||
_zsh_nvm_global_binaries() {
|
_zsh_nvm_global_binaries() {
|
||||||
|
|
||||||
# Look for global binaries
|
# Look for global binaries
|
||||||
local global_binary_paths="$(echo "$NVM_DIR"/v0*/bin/*(N) "$NVM_DIR"/versions/*/*/bin/*(N))"
|
local global_binary_paths=($(echo "$NVM_DIR"/v0*/bin/*(N) "$NVM_DIR"/versions/*/*/bin/*(N)))
|
||||||
|
|
||||||
# If we have some, format them
|
# If we have some, format them
|
||||||
if [[ -n "$global_binary_paths" ]]; then
|
if [[ -n "$global_binary_paths" ]]; then
|
||||||
echo "$NVM_DIR"/v0*/bin/*(N) "$NVM_DIR"/versions/*/*/bin/*(N) |
|
echo ${(F)global_binary_paths} |
|
||||||
xargs -n 1 basename |
|
xargs -n 1 basename |
|
||||||
sort |
|
sort |
|
||||||
uniq
|
uniq
|
||||||
|
Loading…
Reference in New Issue
Block a user