diff options
author | Gustaf Hendeby <hendeby@isy.liu.se> | 2008-01-21 20:57:46 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-21 17:24:12 -0800 |
commit | 97394ee4304a8d336663df5da23a33efbe1ab46b (patch) | |
tree | b883888e66142571de37f4d49abd468a366ab0d0 /git-send-email.perl | |
parent | 7422bac441d6e00cfb8302600ae64512837ab4e3 (diff) | |
download | git-97394ee4304a8d336663df5da23a33efbe1ab46b.tar.gz git-97394ee4304a8d336663df5da23a33efbe1ab46b.tar.xz |
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 aa54892f5ada8282643dc7387b33261c7135d784 (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>
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-x | 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 6c72952fc..a1a9d14b0 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 |