dotfiles/config/git_template/hooks/post-merge

11 lines
137 B
Plaintext
Raw Normal View History

2019-03-28 14:02:06 +00:00
#!/usr/bin/env bash
set -o errexit
main() {
if [[ -x .git/hooks/ctags ]]; then
.git/hooks/ctags &>/dev/null &
fi
}
main "${@}"