2020-03-09 18:41:18 +00:00
|
|
|
#!/bin/zsh
|
2019-12-11 05:52:23 +00:00
|
|
|
# -*- zsh -*-
|
2019-04-16 00:00:14 +00:00
|
|
|
|
|
|
|
local_hook="$HOME"/.git_template.local/hooks/post-merge
|
|
|
|
[ -f "$local_hook" ] && . "$local_hook"
|
|
|
|
|
|
|
|
.git/hooks/ctags >/dev/null 2>&1 &
|
|
|
|
|
2020-03-09 18:41:18 +00:00
|
|
|
(($+commands[gmake])) && gmake update || make update
|