mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 18:25:52 +08:00 
			
		
		
		
	Also fix `nvm uninstall v1.0.3` so it won't uninstall it if it's the current version. node versions will still take priority if there's ever a version overlap.
		
			
				
	
	
		
			15 lines
		
	
	
		
			364 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			364 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| die () { echo $@ ; exit 1; }
 | |
| 
 | |
| . ../../../nvm.sh
 | |
| 
 | |
| nvm deactivate 2>&1 >/dev/null || die 'deactivate failed'
 | |
| 
 | |
| nvm use 'v1.0.0' || die 'nvm use v1.0.0 failed'
 | |
| OUTPUT="$(nvm current)"
 | |
| EXPECTED_OUTPUT="$(nvm_version v1.0.0)"
 | |
| 
 | |
| [ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \
 | |
|   || die "'nvm use v1.0.0' + 'nvm current' did not output '$EXPECTED_OUTPUT'; got '$OUTPUT'"
 |