authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-02-23 14:33:47 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-02-23 14:33:47 -08:00
log44470e07e6767671aee1eae5cb72c7060f92122c
tree3abf78d693e803c979784148c845900e723cf67f
parent434c0a4ac84ade99f748d4ecd27f01f05eba5ff5

util/mkdir- paths are relative so dont enforce absoluteness


1 files changed, 1 insertions(+), 1 deletions(-)

src/util/funcs.zig+1-1
...@@ -194,7 +194,7 @@ pub fn mkdir_all(dpath: []const u8) anyerror!void {...@@ -194,7 +194,7 @@ pub fn mkdir_all(dpath: []const u8) anyerror!void {
194 }194 }
195 try mkdir_all(e);195 try mkdir_all(e);
196 if (!try does_folder_exist(d)) {196 if (!try does_folder_exist(d)) {
197 try std.fs.makeDirAbsolute(d);197 try std.fs.cwd().makeDir(d);
198 }198 }
199}199}
200200