aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-08-10 15:42:29 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-08-10 15:42:29 +1200
commit3fa5082470f5f6c786c74686139030b3c580d61b (patch)
treee7eddacb1a562eb4649109bf8dc86054b39ab0d9
parentTry to gracefully handle absence of Digest::SHA (diff)
downloadcheckem-3fa5082470f5f6c786c74686139030b3c580d61b.tar.gz
checkem-3fa5082470f5f6c786c74686139030b3c580d61b.zip
Perl::Tidy only just decided to change this
Not sure why
-rwxr-xr-xcheckem4
1 files changed, 1 insertions, 3 deletions
diff --git a/checkem b/checkem
index 8b0d7f4..da6d691 100755
--- a/checkem
+++ b/checkem
@@ -69,9 +69,7 @@ find {
wanted => sub {
# Start a hash to represent this file
- my %f = (
- name => $File::Find::name,
- );
+ my %f = ( name => $File::Find::name, );
# Pull in the file stat values we care about
@f{ keys %STATS } = ( stat $f{name} )[ values %STATS ]