This fixes the subtile bug in git send-email that was introduced into git send-email with commit aa54892f5ada8282643dc7387b33261c7135d784 send-email: detect invocation errors earlier causing no patches to be sent out if the --compose flag was used. Signed-off-by: Gustaf Hendeby <hendeby@xxxxxxxxxx> --- git-send-email.perl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/git-send-email.perl b/git-send-email.perl index 6c72952..a1a9d14 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -462,7 +462,7 @@ EOT exit(0); } - @files = ($compose_filename . ".final"); + @files = ($compose_filename . ".final", @files); } # Variables we set as part of the loop over files -- 1.5.4.rc4.1.gbdcdb - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html