From b6442e8137ca34e5cb7fa4d52acda0d97d204071 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 11 Sep 2008 00:13:48 +0000 Subject: [PATCH] Tell perl to autoflush output in darcs-all. Suggested by Claus Reinke --- darcs-all | 2 ++ 1 file changed, 2 insertions(+) diff --git a/darcs-all b/darcs-all index c960d07..6e48377 100644 --- a/darcs-all +++ b/darcs-all @@ -20,6 +20,8 @@ use strict; # ./darcs-all -q send --dry-run # -q says to be quite, and -s to be silent. +$| = 1; # autoflush stdout after each print, to avoid output after die + # Figure out where to get the other repositories from, # based on where this GHC repo came from. my $defaultrepo = `cat _darcs/prefs/defaultrepo`; -- 1.7.10.4