18 lines
		
	
	
		
			582 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			582 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env zsh
 | 
						|
GF_BASE="/Users/james/Code/GreenFiling/eclipse/GreenFiling"
 | 
						|
GF_JOURNAL="/Users/james/Code/GreenFiling/eclipse/JournalClient"
 | 
						|
GF_ONELEGAL="/Users/james/Code/GreenFiling/eclipse/OneLegalClient"
 | 
						|
GF_TYLER="/Users/james/Code/GreenFiling/eclipse/TexFileClient"
 | 
						|
GF_TYBERA="/Users/james/Code/GreenFiling/eclipse/TyberaClient"
 | 
						|
GF_LOG="/Users/james/Code/GreenFiling/data/logs"
 | 
						|
 | 
						|
switch () {
 | 
						|
  pushd "/Users/james/Documents/greenfiling/buildtools/switch"
 | 
						|
  bundle exec ruby switch.rb $@
 | 
						|
  popd
 | 
						|
}
 | 
						|
 | 
						|
if (( $+commands[rbenv] )) ; then
 | 
						|
  eval "$(rbenv init - --no-rehash zsh)"
 | 
						|
fi
 |