From e7bf599ee027b0f35618fe6bc504d8137d404520 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 22 Mar 2012 13:06:08 -0400 Subject: [PATCH] remove debug message A file may have no git sha1 if it's in the underlay, or just is not checked into git. This debug message doesn't add any value and is potentially confusing. --- IkiWiki/Plugin/git.pm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/IkiWiki/Plugin/git.pm b/IkiWiki/Plugin/git.pm index 535cd5fe0..0c0e27521 100644 --- a/IkiWiki/Plugin/git.pm +++ b/IkiWiki/Plugin/git.pm @@ -469,13 +469,10 @@ sub git_sha1 (;$) { # Ignore error since a non-existing file might be given. my ($sha1) = run_or_non('git', 'rev-list', '--max-count=1', 'HEAD', '--', $file); - if ($sha1) { + if (defined $sha1) { ($sha1) = $sha1 =~ m/($sha1_pattern)/; # sha1 is untainted now } - else { - debug("Empty sha1sum for '$file'."); - } - return defined $sha1 ? $sha1 : q{}; + return defined $sha1 ? $sha1 : ''; } sub rcs_update () { -- 2.32.0.93.g670b81a890