Skip to content

Commit 2a59c18

Browse files
authored
Use if instead of && in git hooks (#680)
This prevents a Git hook from issuing a non-zero exit status if the condition is the last line of the hook.
1 parent de02da4 commit 2a59c18

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

git_template/hooks/post-checkout

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/bin/sh
22

33
local_hook="$HOME"/.git_template.local/hooks/post-checkout
4-
[ -f "$local_hook" ] && . "$local_hook"
4+
5+
if [ -f "$local_hook" ]; then
6+
. "$local_hook";
7+
fi
58

69
.git/hooks/ctags >/dev/null 2>&1 &

git_template/hooks/post-commit

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/bin/sh
22

33
local_hook="$HOME"/.git_template.local/hooks/post-commit
4-
[ -f "$local_hook" ] && . "$local_hook"
4+
5+
if [ -f "$local_hook" ]; then
6+
. "$local_hook";
7+
fi
58

69
.git/hooks/ctags >/dev/null 2>&1 &

git_template/hooks/post-merge

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/bin/sh
22

33
local_hook="$HOME"/.git_template.local/hooks/post-merge
4-
[ -f "$local_hook" ] && . "$local_hook"
4+
5+
if [ -f "$local_hook" ]; then
6+
. "$local_hook";
7+
fi
58

69
.git/hooks/ctags >/dev/null 2>&1 &

0 commit comments

Comments
 (0)