summaryrefslogtreecommitdiff
path: root/hooks
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 /hooks
parent343318d29269a72d42c28c2bee7ecf0c7db61dfe (diff)
downloaddotfiles-ed47e018612ca46dd18c27c80958675ecce33cbb.tar.gz
fix some usages of the autodie pragma to what was intended
Diffstat (limited to 'hooks')
-rwxr-xr-xhooks/git/propellor/post-checkout_01dirlocals2
1 files changed, 1 insertions, 1 deletions
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`;