diff options
author | gerv%gerv.net <> | 2002-10-30 17:29:45 +0100 |
---|---|---|
committer | gerv%gerv.net <> | 2002-10-30 17:29:45 +0100 |
commit | 1b19ddfe4ec7d26c696a9dca15c90a6187a564fd (patch) | |
tree | 45504e81d2d37693f60ea7ac527a1c24e751c187 | |
parent | 9607ebb8145d27e3903b12459eedbf1948d91027 (diff) | |
download | bugzilla-1b19ddfe4ec7d26c696a9dca15c90a6187a564fd.tar.gz bugzilla-1b19ddfe4ec7d26c696a9dca15c90a6187a564fd.tar.xz |
Bug 177351 - checksetup.pl tells about deleting templates in silent-running mode. Patch by gerv; r=justdave.
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index a1662192e..3a60a3937 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -920,7 +920,7 @@ END # YYYY-MM-DD my $lastTemplateParamChange = str2time("2002-04-27", "UTC"); if (-e 'data/template') { - print "Removing existing compiled templates ...\n"; + print "Removing existing compiled templates ...\n" unless $silent; # If File::Path::rmtree reported errors, then I'd use that use File::Find; |