mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 18:25:52 +08: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
		
			
				
	
	
		
			15 lines
		
	
	
		
			277 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			277 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| . ../../../nvm.sh
 | |
| 
 | |
| mkdir ../../../v0.0.{1,3,9}
 | |
| mkdir ../../../v0.3.{1,3,9}
 | |
| 
 | |
| # The result should contain the version numbers.
 | |
| nvm ls | grep v0.0.1 &&
 | |
| nvm ls | grep v0.0.3 &&
 | |
| nvm ls | grep v0.0.9 &&
 | |
| nvm ls | grep v0.3.1 &&
 | |
| nvm ls | grep v0.3.3 &&
 | |
| nvm ls | grep v0.3.9
 |