diff mbox series

[v6,1/3] send-email: terminate --git-completion-helper with LF

Message ID 20211007033652.80793-2-tbperrotta@gmail.com (mailing list archive)
State New, archived
Headers show
Series [v6,1/3] send-email: terminate --git-completion-helper with LF | expand

Commit Message

Thiago Perrotta Oct. 7, 2021, 3:36 a.m. UTC
Unlike other Git subcommands, "git send-email" leaves its output an
incomplete line when "--git-completion-helper" is asked.  Be consistent
by terminating the message with LF here.

Signed-off-by: Thiago Perrotta <tbperrotta@gmail.com>
---
 git-send-email.perl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/git-send-email.perl b/git-send-email.perl
index e65d969d0b..d1731c1755 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -114,7 +114,7 @@  sub usage {
 }
 
 sub completion_helper {
-    print Git::command('format-patch', '--git-completion-helper');
+    print Git::command('format-patch', '--git-completion-helper'), "\n";
     exit(0);
 }