Merge pull request #503 from egilkh/master

Should escape grep in copy-packages.
master
Jordan Harband 2014-08-20 10:03:57 -07:00
commit 42786630a1
1 changed files with 1 additions and 1 deletions

2
nvm.sh
View File

@ -748,7 +748,7 @@ nvm() {
# declare local INSTALLS first, otherwise it doesn't work in zsh
local INSTALLS
INSTALLS=$(nvm use $VERSION > /dev/null && npm list --global --parseable --depth=0 2> /dev/null | tail -n +2 | grep -o -e '/[^/]*$' | cut -c 2- | xargs)
INSTALLS=$(nvm use $VERSION > /dev/null && npm list --global --parseable --depth=0 2> /dev/null | tail -n +2 | \grep -o -e '/[^/]*$' | cut -c 2- | xargs)
npm install -g --quiet $INSTALLS
;;