authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-10-06 22:02:33-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-10-08 16:54:31-07:00
logddb7c40037e2834c372a980a413c89b9b250988f
treeff22fe9d2a3242e154809e72e9e74c872d1a1584
parentaed6adb6e9f5b313c7cf6158bcd8fa5adaad7ef1

fix inverted logic for allowing/disallowing paths field


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

src/Package/Fetch.zig+1-1
...@@ -486,7 +486,7 @@ fn queueJobsForDeps(f: *Fetch, hash: Manifest.MultiHashHexDigest) RunError!void...@@ -486,7 +486,7 @@ fn queueJobsForDeps(f: *Fetch, hash: Manifest.MultiHashHexDigest) RunError!void
486 .prog_node = f.prog_node,486 .prog_node = f.prog_node,
487 .job_queue = f.job_queue,487 .job_queue = f.job_queue,
488 .omit_missing_hash_error = false,488 .omit_missing_hash_error = false,
489 .allow_missing_paths_field = false,489 .allow_missing_paths_field = true,
490490
491 .package_root = undefined,491 .package_root = undefined,
492 .error_bundle = undefined,492 .error_bundle = undefined,
src/main.zig+1-1
...@@ -4863,7 +4863,7 @@ pub fn cmdBuild(gpa: Allocator, arena: Allocator, args: []const []const u8) !voi...@@ -4863,7 +4863,7 @@ pub fn cmdBuild(gpa: Allocator, arena: Allocator, args: []const []const u8) !voi
4863 .prog_node = root_prog_node,4863 .prog_node = root_prog_node,
4864 .job_queue = &job_queue,4864 .job_queue = &job_queue,
4865 .omit_missing_hash_error = true,4865 .omit_missing_hash_error = true,
4866 .allow_missing_paths_field = true,4866 .allow_missing_paths_field = false,
48674867
4868 .package_root = undefined,4868 .package_root = undefined,
4869 .error_bundle = undefined,4869 .error_bundle = undefined,