mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-11-04 15:07:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			147 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			147 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -ex
 | 
						|
 | 
						|
ALIAS_PATH="../../alias"
 | 
						|
 | 
						|
echo v0.1.2 > "${ALIAS_PATH}/test"
 | 
						|
 | 
						|
\. ../../nvm.sh
 | 
						|
 | 
						|
nvm unalias test
 | 
						|
 | 
						|
! [ -e "${ALIAS_PATH}/test" ]
 |