1
1

Make that message only print if we're in debugging mode (avoid

spurrious cron e-mails to the job owner :-) )

This commit was SVN r2423.
Этот коммит содержится в:
Jeff Squyres 2004-09-01 08:59:13 +00:00
родитель d96c602465
Коммит 330d8aa52d

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

@ -104,7 +104,7 @@ sub check_last_version {
print "This version: $new_version\n" if ($debug);
if (! -f $last_test_version_name) {
print "Never tested on this system before\n";
print "Never tested on this system before\n" if ($debug);
return;
}