Browse Source

Merge pull request #324 from hurrymaplelad/quiet_type

Slurp stderr from  test unsetopt
install_use_nvmrc
Jordan Harband 11 years ago
parent
commit
cf515c4ff8
  1. 2
      nvm.sh

2
nvm.sh

@ -9,7 +9,7 @@
# Make zsh glob matching behave same as bash
# This fixes the "zsh: no matches found" errors
if type "unsetopt" > /dev/null; then
if type "unsetopt" > /dev/null 2>&1; then
unsetopt nomatch 2>/dev/null
NVM_CD_FLAGS="-q"
fi

Loading…
Cancel
Save