From 5b7a565c76df09e6377a3a2098107d1a3a4d2870 Mon Sep 17 00:00:00 2001 From: Jacob Bachmeyer Date: Sat, 5 Nov 2022 15:31:15 -0500 Subject: [PATCH] Fix example given in comment --- gatekeeper.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatekeeper.pl b/gatekeeper.pl index b1981c8..af622ab 100755 --- a/gatekeeper.pl +++ b/gatekeeper.pl @@ -2335,7 +2335,7 @@ sub mkdir_p { my @dir_steps; # list of intermediate dirs needed # for example, creating bar/baz/quux in an empty /foo populates this list - # with qw( bar bar/baz bar/baz/quux ) + # with qw( /foo/bar /foo/bar/baz /foo/bar/baz/quux ) on POSIX for (@dir_steps = (); @_ && ! -d File::Spec->catdir(@_); pop) { unshift @dir_steps, File::Spec->catdir(@_) } -- 2.25.1