diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-03-21 16:16:47 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-03-21 16:16:47 -0700 |
| commit | 7bc0b74b6d57ff1a350a4f430f7d9e799a90edd0 (patch) | |
| tree | 5e251595d497f7eacd44673ecf61370f28d0c3cc /src/main.zig | |
| parent | 8778dc4bb2bb20779bee3fc964f79437ff3ef9fe (diff) | |
| download | zig-7bc0b74b6d57ff1a350a4f430f7d9e799a90edd0.tar.gz zig-7bc0b74b6d57ff1a350a4f430f7d9e799a90edd0.zip | |
move Package.Path to std.Build.Cache.Path
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.zig b/src/main.zig index be2083a0f8..9629d2bf18 100644 --- a/src/main.zig +++ b/src/main.zig @@ -6133,7 +6133,7 @@ fn cmdAstCheck( } file.mod = try Package.Module.createLimited(arena, .{ - .root = Package.Path.cwd(), + .root = Cache.Path.cwd(), .root_src_path = file.sub_file_path, .fully_qualified_name = "root", }); @@ -6306,7 +6306,7 @@ fn cmdChangelist( }; file.mod = try Package.Module.createLimited(arena, .{ - .root = Package.Path.cwd(), + .root = Cache.Path.cwd(), .root_src_path = file.sub_file_path, .fully_qualified_name = "root", }); |
