summaryrefslogtreecommitdiff
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
parent343318d29269a72d42c28c2bee7ecf0c7db61dfe (diff)
downloaddotfiles-ed47e018612ca46dd18c27c80958675ecce33cbb.tar.gz
fix some usages of the autodie pragma to what was intended
-rwxr-xr-xbin/rebuild-for-athena2
-rwxr-xr-xbin/release-to-athena2
-rwxr-xr-xhooks/git/propellor/post-checkout_01dirlocals2
3 files changed, 3 insertions, 3 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);
diff --git a/hooks/git/propellor/post-checkout_01dirlocals b/hooks/git/propellor/post-checkout_01dirlocals
index 5118e81a..472868cf 100755
--- a/hooks/git/propellor/post-checkout_01dirlocals
+++ b/hooks/git/propellor/post-checkout_01dirlocals
@@ -4,7 +4,7 @@ use strict;
use warnings;
use Path::Class;
-use autodie;
+use autodie ":all";
(undef, my $head, my $flag) = @ARGV;
my $branch = `git name-rev --name-only $head`;