dotfiles/config/git_template/hooks/post-merge
2019-03-28 10:02:06 -04:00

11 lines
137 B
Bash
Executable File

#!/usr/bin/env bash
set -o errexit
main() {
if [[ -x .git/hooks/ctags ]]; then
.git/hooks/ctags &>/dev/null &
fi
}
main "${@}"