mirror of
				https://github.com/lukechilds/zsh-nvm.git
				synced 2025-10-30 14:46:28 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			421 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			421 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| source ../common.sh
 | |
| 
 | |
| nvm_placeholder="nvm placeholder"
 | |
| 
 | |
| # Fake nvm installation
 | |
| mkdir "$NVM_DIR"
 | |
| echo "$nvm_placeholder" > "$NVM_DIR/nvm.sh"
 | |
| 
 | |
| # Check fake nvm file is there
 | |
| [[ -f "$NVM_DIR/nvm.sh" ]] || die "Fake nvm file wasn't created"
 | |
| 
 | |
| # Load zsh-nvm
 | |
| load_zsh_nvm
 | |
| 
 | |
| # Check fake nvm installation wasn't overwritten
 | |
| [[ $(cat "$NVM_DIR/nvm.sh") == "$nvm_placeholder" ]] || die "Existing nvm installation was overwritten"
 | 
