Skip to content

Commit 97394ee

Browse files
hendebygitster
authored andcommitted
send-email, fix breakage in combination with --compose
This fixes the subtile bug in git send-email that was introduced into git send-email with aa54892 (send-email: detect invocation errors earlier), which caused no patches to be sent out if the --compose flag was used. Signed-off-by: Gustaf Hendeby <hendeby@isy.liu.se> Tested-by: Seth Falcon <seth@userprimary.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 7422bac commit 97394ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-send-email.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ sub expand_aliases {
462462
exit(0);
463463
}
464464

465-
@files = ($compose_filename . ".final");
465+
@files = ($compose_filename . ".final", @files);
466466
}
467467

468468
# Variables we set as part of the loop over files

0 commit comments

Comments
 (0)