I may want to have it check normal places by default. I haven't done this as I can see this being used for malicious overwriting of commands.
		
			
				
	
	
		
			10 lines
		
	
	
		
			189 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			189 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
export GOPATH="${HOME}/.go"
 | 
						|
export PSQLAPP="/Applications/Postgres.app/Contents/Versions/latest/bin"
 | 
						|
cargo="${HOME}/.cargo/bin:$PATH"
 | 
						|
 | 
						|
path=(
 | 
						|
    $cargo
 | 
						|
    $GOPATH
 | 
						|
    $PSQLAPP
 | 
						|
    $path)
 |