chiark / gitweb /
Minor fix to remote functionality:
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Wed, 23 Oct 2013 12:01:09 +0000 (13:01 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Wed, 23 Oct 2013 12:01:09 +0000 (13:01 +0100)
* Improve debug output at completion.

debian/changelog
dgit

index ae985a5ff60fb23adb5bc093c49c3197302cee92..e3adde5282c32d7e5652ef01a0cac198bddfc503 100644 (file)
@@ -1,3 +1,10 @@
+dgit (0.17~experimental3) experimental; urgency=low
+
+  Minor fix to remote functionality:
+  * Improve debug output at completion.
+
+ -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Wed, 23 Oct 2013 13:00:50 +0100
+
 dgit (0.17~experimental2) experimental; urgency=low
 
   * When generating git tags, quote the (uncanonicalised) changelog's
diff --git a/dgit b/dgit
index 53083860f84920f5599583bff0fe0ccb9819c9da..37a61111db92ea2bf3257cb6259b25e667f76348 100755 (executable)
--- a/dgit
+++ b/dgit
@@ -1515,12 +1515,13 @@ sub i_resp_progress ($) {
 sub i_resp_complete {
     my $pid = $i_child_pid;
     $i_child_pid = undef; # prevents killing some other process with same pid
-    printdebug "waiting for remote child $pid...";
+    printdebug "waiting for remote child $pid...\n";
     my $got = waitpid $pid, 0;
     die $! unless $got == $pid;
     die "remote child failed $?" if $?;
 
     i_cleanup();
+    printdebug "all done\n";
     exit 0;
 }