diff options
author | Daniel Friesel <derf@finalrewind.org> | 2013-09-20 02:26:46 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2013-09-20 02:26:46 +0200 |
commit | 94fadd6a0b698352872832c1c42031240b2a21c2 (patch) | |
tree | 53e26fb0c74d03db5afca5af82fefd4a23af3257 | |
parent | 5742226c2d636fa1e26c9c3376dd917a7a2e544c (diff) |
checklinks: fix smartmatch warnings
-rwxr-xr-x | bin/checklinks | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/checklinks b/bin/checklinks index e442665..43eca8d 100755 --- a/bin/checklinks +++ b/bin/checklinks @@ -8,6 +8,8 @@ use Cwd; use Getopt::Long; use Term::ANSIColor; +no if $] >= 5.018, warnings => "experimental::smartmatch"; + my $base = $ENV{HOME}; my $msglevel = 0; my $remove = 0; |