Browse Source

Merge pull request #129 from indianburger/master

Add check for unsetopt issue #128
master
Tim Caswell 13 years ago
parent
commit
5132a1eb6f
  1. 4
      nvm.sh

4
nvm.sh

@ -12,7 +12,9 @@ fi @@ -12,7 +12,9 @@ fi
# Make zsh glob matching behave same as bash
# This fixes the "zsh: no matches found" errors
unsetopt nomatch 2>/dev/null
if [[ `which unsetopt` ]]; then
unsetopt nomatch 2>/dev/null
fi
# Expand a version using the version cache
nvm_version()

Loading…
Cancel
Save