diff options
author | David Aguilar <davvid@gmail.com> | 2014-11-20 17:20:28 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-11-21 11:27:53 -0800 |
commit | c41d3fedd8a5dec2c2c991822b70b91c50ca047e (patch) | |
tree | cb82455a64b0d04a79c9f23e7a3e63eeb2be514f /git-difftool--helper.sh | |
parent | 1b6a53431c0ffba4fb2428ef09018a5e889f52f8 (diff) | |
download | git-c41d3fedd8a5dec2c2c991822b70b91c50ca047e.tar.gz |
difftool--helper: add explicit exit statement
git-difftool--helper returns a zero exit status unless
--trust-exit-code is in effect. Add an explicit exit statement
to make this clearer.
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-difftool--helper.sh')
-rwxr-xr-x | git-difftool--helper.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git-difftool--helper.sh b/git-difftool--helper.sh index d4fb6dfe13..2b11b1d6fe 100755 --- a/git-difftool--helper.sh +++ b/git-difftool--helper.sh @@ -94,3 +94,5 @@ else shift 7 done fi + +exit 0 |