From: Michael Andreen Date: Sat, 4 Jul 2020 13:18:10 +0000 (+0200) Subject: Remove indirect object notation X-Git-Url: https://ruin.nu/git/?p=ndwebbie.git;a=commitdiff_plain;h=28543b928d8c7cd15935dab2a29b52b16289fa7a Remove indirect object notation --- diff --git a/scripts/clean_cache.pl b/scripts/clean_cache.pl index 9516ef8..e225199 100755 --- a/scripts/clean_cache.pl +++ b/scripts/clean_cache.pl @@ -9,7 +9,7 @@ use lib "$FindBin::Bin/../lib"; use Cache::FileCache; -my $cache = new Cache::FileCache({cache_root => "/tmp/ndweb-$<", namespace => 'cache'} ); +my $cache = Cache::FileCache->new({cache_root => "/tmp/ndweb-$<", namespace => 'cache'}); $cache->purge;