mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 10:15:53 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			323 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| set -ex
 | |
| 
 | |
| . ../../../../nvm.sh
 | |
| . ../../../common.sh
 | |
| 
 | |
| LTS_ALIAS_PATH="$(nvm_alias_path)/lts"
 | |
| 
 | |
| die () { echo $@ ; exit 1; }
 | |
| 
 | |
| [ ! -d "${LTS_ALIAS_PATH}" ] || die "'${LTS_ALIAS_PATH}' exists and should not"
 | |
| 
 | |
| nvm alias >/dev/null 2>&1
 | |
| 
 | |
| [ -d "${LTS_ALIAS_PATH}" ] || die "'${LTS_ALIAS_PATH}' does not exist and should"
 |