This prevents a Git hook from issuing a non-zero exit status if the condition is the last line of the hook.
9 lines
156 B
Bash
Executable file
9 lines
156 B
Bash
Executable file
#!/bin/sh
|
|
|
|
local_hook="$HOME"/.git_template.local/hooks/post-merge
|
|
|
|
if [ -f "$local_hook" ]; then
|
|
. "$local_hook";
|
|
fi
|
|
|
|
.git/hooks/ctags >/dev/null 2>&1 &
|