11 lines
		
	
	
		
			No EOL
		
	
	
		
			94 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			No EOL
		
	
	
		
			94 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| git stash -q --keep-index
 | |
| 
 | |
| ./lint.sh
 | |
| 
 | |
| RESULT=$?
 | |
| 
 | |
| git add -u
 | |
| 
 | |
| exit $RESULT |