From: Nicolas Sebrecht Date: Fri, 7 Aug 2009 01:08:13 +0000 (-0500) Subject: git-am: print fair error message when format detection fails X-Git-Tag: v1.6.4.1~1^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=af12fb7b3048c5bdd2e90885a6736ebc29d84f01;p=git.git git-am: print fair error message when format detection fails Avoid git ending with this message: "Patch format is not supported." With improved error message in the format detection failure case by Giuseppe Bilotta. Signed-off-by: Nicolas Sebrecht Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- diff --git a/git-am.sh b/git-am.sh index dd60f5d9c..f719f6e65 100755 --- a/git-am.sh +++ b/git-am.sh @@ -268,7 +268,11 @@ split_patches () { msgnum= ;; *) - clean_abort "Patch format $patch_format is not supported." + if test -n "$parse_patch" ; then + clean_abort "Patch format $patch_format is not supported." + else + clean_abort "Patch format detection failed." + fi ;; esac }