mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-11-04 06:57:12 +00:00 
			
		
		
		
	fast tests alias unalias more alias tests tests document testing warn not to run while testing chmod +x deactivate specify the version (commit) of urchin installation test run tests for ls switch unsetopt to the thing creationix has rename tests urchin log adjust urchin version
		
			
				
	
	
		
			11 lines
		
	
	
		
			197 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			197 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
mkdir ../../../v0.1.3
 | 
						|
mkdir ../../../v0.2.3
 | 
						|
 | 
						|
. ../../../nvm.sh
 | 
						|
 | 
						|
# The result should contain only the appropriate version numbers.
 | 
						|
nvm ls 0.2 | grep v0.2.3 &&
 | 
						|
nvm ls 0.1 | grep -v v0.2.3
 |