mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 01:45:50 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| \. ../../nvm.sh
 | |
| nvm deactivate
 | |
| nvm uninstall iojs-v1.0.0
 | |
| nvm uninstall iojs-v1.0.3
 | |
| nvm uninstall iojs-v3.3.0
 | |
| nvm uninstall iojs-v3.3.1
 | |
| 
 | |
| if [ -f ".nvmrc" ]; then
 | |
|   rm .nvmrc
 | |
| fi
 | |
| 
 | |
| if [ -f ".nvmrc.bak" ]; then
 | |
|   mv .nvmrc.bak .nvmrc
 | |
| fi
 | |
| 
 |