From: Linus Torvalds Date: Wed, 25 Jan 2006 22:02:10 +0000 (-0500) Subject: git-whatchanged: exit out early on errors X-Git-Tag: v1.2.0~113 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=73e5456ed3eced7a728f933e01c850c2992dbeed;p=git.git git-whatchanged: exit out early on errors If we get an error parsing the arguments, exit. Signed-off-by: Linus Torvalds Signed-off-by: Junio C Hamano --- diff --git a/git-whatchanged.sh b/git-whatchanged.sh index 80e2500e..d4f985b5 100755 --- a/git-whatchanged.sh +++ b/git-whatchanged.sh @@ -4,7 +4,7 @@ USAGE='[-p] [--max-count=] [..] [--pretty=] [-m] [git-d SUBDIRECTORY_OK='Yes' . git-sh-setup -diff_tree_flags=$(git-rev-parse --sq --no-revs --flags "$@") +diff_tree_flags=$(git-rev-parse --sq --no-revs --flags "$@") || exit test -z "$diff_tree_flags" && diff_tree_flags=$(git-repo-config --get whatchanged.difftree) test -z "$diff_tree_flags" &&