summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rwxr-xr-xdgit2
2 files changed, 9 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 4ac1598..be125f8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+dgit (0.16) unstable; urgency=low
+
+ * Set autoflush on stdout, to get better ordering of debugging
+ etc. output when stdout is redirected.
+
+ --
+
dgit (0.15) unstable; urgency=low
* Better handling of packages pushed using dgit and stuck in NEW.
diff --git a/dgit b/dgit
index 1838f2f..083086b 100755
--- a/dgit
+++ b/dgit
@@ -71,6 +71,8 @@ our $keyid;
our $debug = 0;
open DEBUG, ">/dev/null" or die $!;
+autoflush STDOUT 1;
+
our $remotename = 'dgit';
our @ourdscfield = qw(Dgit Vcs-Dgit-Master);
our $branchprefix = 'dgit';