mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-11-04 05:01:23 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			196 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			196 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -ex
 | 
						|
 | 
						|
# Remove temporary files
 | 
						|
(
 | 
						|
  cd ../..
 | 
						|
 | 
						|
  type setopt >/dev/null 2>&1 && setopt NULL_GLOB
 | 
						|
  type shopt >/dev/null 2>&1 && shopt -s nullglob
 | 
						|
  rm -fR v* src alias test/test-xz
 | 
						|
)
 |