fetch: fix missing check for build.zig existence

This commit is contained in:
Andrew Kelley 2026-02-06 15:10:54 -08:00
parent 9f3b60b23a
commit b24b0479f6

View file

@ -581,6 +581,8 @@ pub fn run(f: *Fetch) RunError!void {
f.package_root = fork.path;
f.manifest_ast = fork.manifest_ast;
f.manifest = fork.manifest;
f.have_manifest = true;
try checkBuildFileExistence(f);
if (!job_queue.recursive) return;
return queueJobsForDeps(f);
}