From 2fe9913d68e5f9031a41aafb08b3eba0b2f7b6ab Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Mon, 4 Apr 2011 16:44:53 +0100 Subject: [PATCH] Turn on autoflush in sync-all darcs-all did it, so sync-all probably should too. --- sync-all | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sync-all b/sync-all index 37f2d81..743d3e6 100755 --- a/sync-all +++ b/sync-all @@ -59,6 +59,8 @@ use Cwd; # root one. So the remote repos must be laid out in one of the two # formats given by and in the file 'packages'. +$| = 1; # autoflush stdout after each print, to avoid output after die + my $defaultrepo; my @packages; my $verbose = 2; -- 1.7.10.4