Skip to content

Commit

Permalink
Item11210: don't print debug to stdout
Browse files Browse the repository at this point in the history
it shows up in the cron emails

git-svn-id: http://svn.foswiki.org/trunk@12936 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
GeorgeClark authored and GeorgeClark committed Oct 29, 2011
1 parent 6b09500 commit a3c4307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/tools/develop/post-commit.pl
Expand Up @@ -33,7 +33,7 @@

$first ||= ( $last - 1 );

print "F:$first L:$last\n" if $verbose;
#print "F:$first L:$last\n" if $verbose;
my @changes;
for ( my $i = $first + 1 ; $i <= $last ; $i++ ) {
push(
Expand All @@ -45,7 +45,7 @@
split( /\n/, `/usr/local/bin/svnlook changed -r $i $REPOS` )
);
}
print scalar(@changes), " changes\n" if $verbose;
#print scalar(@changes), " changes\n" if $verbose;
exit 0 unless scalar(@changes);

sub _add {
Expand Down

0 comments on commit a3c4307

Please sign in to comment.