aboutsummaryrefslogtreecommitdiff
path: root/bin/uri
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-16 16:27:08 -0300
committerEuAndreh <eu@euandre.org>2022-10-16 16:27:10 -0300
commit2281a7f92894a840767dbe4ace2e99769cdd6622 (patch)
tree7df93735d0c19ca783118fc8711278c5d3d66887 /bin/uri
parentetc/guix/home.scm: Add scdoc package (diff)
downloaddotfiles-2281a7f92894a840767dbe4ace2e99769cdd6622.tar.gz
dotfiles-2281a7f92894a840767dbe4ace2e99769cdd6622.tar.xz
bin/*.pl: Explicitly name the excluded warnings
The previous version had a catch-all for all warnings, even the ones I don't know that I have, or future warnings that could appear.
Diffstat (limited to 'bin/uri')
-rwxr-xr-xbin/uri2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/uri b/bin/uri
index dfd4cfe..77022c9 100755
--- a/bin/uri
+++ b/bin/uri
@@ -4,7 +4,7 @@ use v5.34;
use strict;
use warnings;
use feature 'signatures';
-no warnings 'experimental';
+no warnings ('experimental::signatures');
use Getopt::Std ();
use URI::Escape ();