12 lines
		
	
	
		
			177 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			177 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| if [ ! -f .envrc ]; then
 | |
|     . .envrc.sample
 | |
| else
 | |
|     . .envrc
 | |
| fi
 | |
| 
 | |
| git config --global --add safe.directory /abra  # work around funky file permissions
 | |
| 
 | |
| make build
 |