aboutsummaryrefslogtreecommitdiff
path: root/test/cli.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-03-03 17:05:14 -0500
committerGitHub <noreply@github.com>2020-03-03 17:05:14 -0500
commitf6f0b019bee7910702e113be6d33865c592afa2a (patch)
tree65cd5209cf69c03445f85bb244d15ca00bb51a32 /test/cli.zig
parent582db68a157520a0cf7777807f466d1f6a2e31e7 (diff)
parent1141bfb21b82f8d3fc353e968a591f2ad9aaa571 (diff)
downloadzig-f6f0b019bee7910702e113be6d33865c592afa2a.tar.gz
zig-f6f0b019bee7910702e113be6d33865c592afa2a.zip
Merge pull request #4618 from ziglang/daurnimator-paths
improvements to std.fs, std.os
Diffstat (limited to 'test/cli.zig')
-rw-r--r--test/cli.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cli.zig b/test/cli.zig
index 117c714a29..9bc4a21c90 100644
--- a/test/cli.zig
+++ b/test/cli.zig
@@ -37,7 +37,7 @@ pub fn main() !void {
};
for (test_fns) |testFn| {
try fs.deleteTree(dir_path);
- try fs.makeDir(dir_path);
+ try fs.cwd().makeDir(dir_path);
try testFn(zig_exe, dir_path);
}
}