1
1

I've been working on low-bandwidth links recently; make the hgignore

builer less chatty.  :-)

This commit was SVN r19488.
Этот коммит содержится в:
Jeff Squyres 2008-09-03 08:34:13 +00:00
родитель 9a98423bbc
Коммит c0b8a4a9b5

Просмотреть файл

@ -48,6 +48,13 @@ static-components.h
*~
*\\\#/;
my $debug;
$debug = 1
if ($ARGV[0]);
print "Thinking...\n"
if (!$debug);
# Start at the top level
process(".");
@ -81,7 +88,8 @@ sub process {
chomp($svn_ignore);
if ($svn_ignore ne "") {
print "Found svn:ignore in $dir\n";
print "Found svn:ignore in $dir\n"
if ($debug);
foreach my $line (split(/\n/, $svn_ignore)) {
chomp($line);
$line =~ s/^\.\///;