summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-03-19 14:49:01 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-03-20 15:01:21 -0700
commited47e018612ca46dd18c27c80958675ecce33cbb (patch)
treef17346d7f4eccbec6f861c73f6a94e6655d1b926 /bin
parent343318d29269a72d42c28c2bee7ecf0c7db61dfe (diff)
downloaddotfiles-ed47e018612ca46dd18c27c80958675ecce33cbb.tar.gz
fix some usages of the autodie pragma to what was intended
Diffstat (limited to 'bin')
-rwxr-xr-xbin/rebuild-for-athena2
-rwxr-xr-xbin/release-to-athena2
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/rebuild-for-athena b/bin/rebuild-for-athena
index cc8f9302..99c9acfe 100755
--- a/bin/rebuild-for-athena
+++ b/bin/rebuild-for-athena
@@ -4,7 +4,7 @@ use 5.028;
use strict;
use warnings;
-use autodie;
+use autodie ":all";
use File::Basename qw(basename);
use Git::Wrapper;
diff --git a/bin/release-to-athena b/bin/release-to-athena
index c03ba4aa..0147febc 100755
--- a/bin/release-to-athena
+++ b/bin/release-to-athena
@@ -4,7 +4,7 @@ use 5.028;
use strict;
use warnings;
-use autodie;
+use autodie ":all";
use Term::UI;
system qw(dgit sbuild --no-run-lintian);