In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/680aa2c2484f26e04864ca31f36413ef64145b4d?hp=b4af89720d5c9c91b0b1ba4a3464b23d6ca88ee1>

- Log -----------------------------------------------------------------
commit 680aa2c2484f26e04864ca31f36413ef64145b4d
Author: Ævar Arnfjörð Bjarmason <a...@cpan.org>
Date:   Tue Feb 15 23:07:38 2011 +0000

    Porting/git-deltatool: print progress info to STDERR
    
    Print output that's just displaying the progress of the tool to STDERR
    instead of STDOUT. I can now do things like:
    
        git-deltatool --mode summary --type blocking | awk '{print $1}'
    
    And not have the first line be "Scanning".
-----------------------------------------------------------------------

Summary of changes:
 Porting/git-deltatool |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Porting/git-deltatool b/Porting/git-deltatool
index 315cb7b..35156e8 100644
--- a/Porting/git-deltatool
+++ b/Porting/git-deltatool
@@ -177,7 +177,7 @@ sub update {
 sub _iterate_commits {
   my ($self, $fcn) = @_;
   my $type = $self->opt('type');
-  say "Scanning for $type commits since " . $self->last_tag . "...";
+  say STDERR "Scanning for $type commits since " . $self->last_tag . "...";
   for my $log ( $self->find_commits($type) ) {
     redo unless $fcn->($log);
   }

--
Perl5 Master Repository

Reply via email to