From: Joey Hess Date: Tue, 20 Apr 2010 02:14:22 +0000 (-0400) Subject: move message into if block X-Git-Tag: 3.20100427~106 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2111bf0408620a307c8c0373489ef34ca6626fd2;p=ikiwiki.git move message into if block --- diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index a6b0f0617..1114e05c8 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -366,13 +366,13 @@ sub find_new_files ($) { push @internal_new, $file; } elsif ($config{rcs}) { - if (! $times_noted) { - debug(sprintf(gettext("querying %s for file creation and modification times.."), $config{rcs})); - $times_noted=1; - } - push @new, $file; if ($config{gettime} && -e "$config{srcdir}/$file") { + if (! $times_noted) { + debug(sprintf(gettext("querying %s for file creation and modification times.."), $config{rcs})); + $times_noted=1; + } + eval { my $ctime=rcs_getctime("$config{srcdir}/$file"); if ($ctime > 0) {