You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							11 lines
						
					
					
						
							327 B
						
					
					
				
			
		
		
	
	
							11 lines
						
					
					
						
							327 B
						
					
					
				#!/bin/sh | 
						|
 | 
						|
die () { echo $@ ; exit 1; } | 
						|
 | 
						|
. ../../../nvm.sh | 
						|
 | 
						|
TEST_PATH=$NVM_DIR/v0.10.5/bin:/usr/bin:$NVM_DIR/v0.11.5/bin:$NVM_DIR/v0.9.5/bin:/usr/local/bin:$NVM_DIR/v0.2.5/bin | 
						|
 | 
						|
STRIPPED_PATH=`nvm_strip_path "$TEST_PATH" "/bin"` | 
						|
 | 
						|
[ "$STRIPPED_PATH" = "/usr/bin:/usr/local/bin" ] || die "Not correctly stripped: $STRIPPED_PATH "
 | 
						|
 |