Skip to content

Commit

Permalink
send-email, fix breakage in combination with --compose
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Gustaf Hendeby authored and Junio C Hamano committed Jan 22, 2008
1 parent 7422bac commit 97394ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-send-email.perl
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ sub expand_aliases {
exit(0);
}

@files = ($compose_filename . ".final");
@files = ($compose_filename . ".final", @files);
}

# Variables we set as part of the loop over files
Expand Down

0 comments on commit 97394ee

Please sign in to comment.