Skip to content

Commit

Permalink
Added check for unsetopt
Browse files Browse the repository at this point in the history
unsetopt doesn't exist on OSX by default which causes `. nvm.sh` to
fail at that line.
  • Loading branch information
noobster committed Aug 8, 2012
1 parent e475d7e commit 3bb2634
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 3bb2634

Please sign in to comment.