mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 18:25:52 +08:00 
			
		
		
		
	Added check for unsetopt
unsetopt doesn't exist on OSX by default which causes `. nvm.sh` to fail at that line.
This commit is contained in:
		
							
								
								
									
										4
									
								
								nvm.sh
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								nvm.sh
									
									
									
									
									
								
							| @@ -12,7 +12,9 @@ fi | |||||||
|  |  | ||||||
| # Make zsh glob matching behave same as bash | # Make zsh glob matching behave same as bash | ||||||
| # This fixes the "zsh: no matches found" errors | # 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 | # Expand a version using the version cache | ||||||
| nvm_version() | nvm_version() | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user