From: David Aguilar Date: Fri, 21 Nov 2014 01:20:28 +0000 (-0800) Subject: difftool--helper: add explicit exit statement X-Git-Tag: v2.3.0-rc0~83^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/c41d3fedd8a5dec2c2c991822b70b91c50ca047e?ds=inline;hp=-c 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 Signed-off-by: Junio C Hamano --- c41d3fedd8a5dec2c2c991822b70b91c50ca047e 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