mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 10:00:06 +08:00 
			
		
		
		
	For #341. `nvm copy-packages` and install option `--copy-packages-from` will continue to be supported for for at least a full minor release version.
		
			
				
	
	
		
			11 lines
		
	
	
		
			122 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			122 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| . ../../../nvm.sh
 | |
| nvm install 0.10.28
 | |
| nvm install 0.10.29
 | |
| 
 | |
| if [ -f ".nvmrc" ]; then
 | |
|   mv .nvmrc .nvmrc.bak
 | |
| fi
 | |
| 
 |