Skip to content

Commit

Permalink
Merge pull request #129 from indianburger/master
Browse files Browse the repository at this point in the history
Add check for unsetopt issue #128
  • Loading branch information
creationix committed Aug 20, 2012
2 parents e475d7e + 3bb2634 commit 5132a1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nvm.sh
Expand Up @@ -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()
Expand Down

0 comments on commit 5132a1e

Please sign in to comment.