11 lines
		
	
	
		
			171 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			171 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
# -*- zsh -*-
 | 
						|
 | 
						|
local_hook="$HOME"/.git_template.local/hooks/post-merge
 | 
						|
[ -f "$local_hook" ] && . "$local_hook"
 | 
						|
 | 
						|
.git/hooks/ctags >/dev/null 2>&1 &
 | 
						|
 | 
						|
make update
 | 
						|
 |