Merge pull request #335 from naartjie/#299

fix copy-packages in zsh
master
Jordan Harband 2013-12-26 11:02:28 -08:00
commit bc4c5644f5
1 changed files with 6 additions and 2 deletions

8
nvm.sh
View File

@ -496,9 +496,13 @@ nvm() {
return return
fi fi
local VERSION=`nvm_version $2` local VERSION=`nvm_version $2`
local ROOT=`nvm use $VERSION && npm -g root` local ROOT=`(nvm use $VERSION && npm -g root) | tail -n1`
local ROOTDEPTH=$((`echo $ROOT | sed 's/[^\/]//g'|wc -m` -1)) local ROOTDEPTH=$((`echo $ROOT | sed 's/[^\/]//g'|wc -m` -1))
local INSTALLS=( `nvm use $VERSION > /dev/null && npm -g -p ll | \grep "$ROOT\/[^/]\+$" | cut -d '/' -f $(($ROOTDEPTH + 2)) | cut -d ":" -f 2 | \grep -v npm | tr "\n" " "` )
# declare local INSTALLS first, otherwise it doesn't work in zsh
local INSTALLS
INSTALLS=( `nvm use $VERSION > /dev/null && npm -g -p ll | \grep "$ROOT\/[^/]\+$" | cut -d '/' -f $(($ROOTDEPTH + 2)) | cut -d ":" -f 2 | \grep -v npm | tr "\n" " "` )
npm install -g ${INSTALLS[@]} npm install -g ${INSTALLS[@]}
;; ;;
"clear-cache" ) "clear-cache" )