mirror of
				https://github.com/lukechilds/zsh-nvm.git
				synced 2025-10-30 14:46:28 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
source ../common.sh
 | 
						|
 | 
						|
# Check nvm isn't already installed
 | 
						|
[[ ! -f "$NVM_DIR/nvm.sh" ]] || die "nvm is already installed $NVM_DIR/nvm.sh"
 | 
						|
 | 
						|
# Load zsh-nvm
 | 
						|
load_zsh_nvm
 | 
						|
 | 
						|
# Check nvm is now installed
 | 
						|
[[ -f "$NVM_DIR/nvm.sh" ]] || die "nvm wasn't installed"
 |