13 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -ex
 | |
| cd "$(dirname "$0")"
 | |
| 
 | |
| cargo="$(readlink -f "../../cargo")"
 | |
| 
 | |
| if [[ ! -d googleapis ]]; then
 | |
|   git clone https://github.com/googleapis/googleapis.git
 | |
| fi
 | |
| 
 | |
| exec "$cargo" run
 |