From 391901ee321dbab7361e1d63c39215d2deb0f551 Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Wed, 13 Nov 2019 19:35:05 -0700 Subject: [PATCH] hopefully fix pod2usage "not a glob reference" bug --- t/app-codeowners.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/app-codeowners.t b/t/app-codeowners.t index 5ec78cb..af426e6 100644 --- a/t/app-codeowners.t +++ b/t/app-codeowners.t @@ -14,8 +14,8 @@ use Test::More; my $can_git = _can_git(); -# Set progname so that pod2usage knows how to find the script after we chdir -$0 = path($Bin)->parent->child('bin/git-codeowners')->absolute; +# Set progname so that pod2usage knows how to find the script after we chdir. +$0 = path($Bin)->parent->child('bin/git-codeowners')->absolute->stringify; $ENV{NO_COLOR} = 1; -- 2.43.0