projects
/
gatekeeper.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ed32fd
)
Fix example given in comment
author
Jacob Bachmeyer
<jcb@gnu.org>
Sat, 5 Nov 2022 20:31:15 +0000
(15:31 -0500)
committer
Jacob Bachmeyer
<jcb@gnu.org>
Sat, 5 Nov 2022 20:31:15 +0000
(15:31 -0500)
gatekeeper.pl
patch
|
blob
|
blame
|
history
diff --git
a/gatekeeper.pl
b/gatekeeper.pl
index b1981c8847bd6bb528881ee913cdb132f0e489b2..af622abf8a4a214bdfd1aacaa8797c72343862b5 100755
(executable)
--- 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(@_) }