aboutsummaryrefslogtreecommitdiff
path: root/src/Package/Fetch.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-10-08 17:29:55 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-10-08 17:29:55 -0700
commit6d84caf72771cf05997518ae2fa40a94de709de4 (patch)
tree862543ae6537595ef67ced8d4d06da5384f29699 /src/Package/Fetch.zig
parent7bae6d90648e6ef0782c7f5e8a72066742feacaf (diff)
downloadzig-6d84caf72771cf05997518ae2fa40a94de709de4.tar.gz
zig-6d84caf72771cf05997518ae2fa40a94de709de4.zip
move some package management related source files around
Diffstat (limited to 'src/Package/Fetch.zig')
-rw-r--r--src/Package/Fetch.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Package/Fetch.zig b/src/Package/Fetch.zig
index b57117ce97..373ab5be78 100644
--- a/src/Package/Fetch.zig
+++ b/src/Package/Fetch.zig
@@ -1449,9 +1449,9 @@ const Allocator = std.mem.Allocator;
const Cache = std.Build.Cache;
const ThreadPool = std.Thread.Pool;
const WaitGroup = std.Thread.WaitGroup;
-const Manifest = @import("../Manifest.zig");
const Fetch = @This();
const main = @import("../main.zig");
-const git = @import("../git.zig");
+const git = @import("Fetch/git.zig");
const Package = @import("../Package.zig");
+const Manifest = Package.Manifest;
const ErrorBundle = std.zig.ErrorBundle;