Skip to content

Commit 6e9e032

Browse files
committed
git-am: catch missing author date early.
Even though commit-tree would default to the current time if the incoming e-mail message somehow did not record the timestamp, it is safer to catch the breakage sooner. Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ada59fc commit 6e9e032

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git-am.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,9 @@ do
307307
GIT_AUTHOR_EMAIL="$(sed -n '/^Email/ s/Email: //p' "$dotest/info")"
308308
GIT_AUTHOR_DATE="$(sed -n '/^Date/ s/Date: //p' "$dotest/info")"
309309

310-
if test -z "$GIT_AUTHOR_EMAIL"
310+
if test -z "$GIT_AUTHOR_EMAIL" || test -z "$GIT_AUTHOR_DATE"
311311
then
312-
echo "Patch does not have a valid e-mail address."
312+
echo "Patch does not have valid authorship information."
313313
stop_here $this
314314
fi
315315

0 commit comments

Comments
 (0)