mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-11-03 22:47:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			216 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			216 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -e
 | 
						|
. ../../nvm.sh
 | 
						|
 | 
						|
# Remove the stuff we're clobbering.
 | 
						|
[ -e ../../v0.6.14 ] && rm -R ../../v0.6.14
 | 
						|
 | 
						|
# Install
 | 
						|
nvm install 0.6.14
 | 
						|
 | 
						|
# Check
 | 
						|
[ -d ../../v0.6.14 ]
 | 
						|
nvm use v0.6.14 --version | grep v0.6.14
 |