authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-12-02 22:07:32 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-12-02 22:07:32 -08:00
log1995ca2face963c0bc23cf2dfb7f1e8db1b26c9c
tree2314df4cb5d235bc5148d0c1e99cca0141bae610
parent33bb7e4dc53f6df3d5d7f1b749bf89b10ea74036

deps.zig- add missing check for packages array since root/build deps split


1 files changed, 3 insertions(+), 0 deletions(-)

src/cmd/fetch.zig+3
......@@ -247,6 +247,9 @@ fn print_deps(w: std.fs.File.Writer, m: zigmod.Module) !void {
247247 if (d.main.len == 0) {
248248 continue;
249249 }
250 if (d.for_build) {
251 continue;
252 }
250253 try w.print(" package_data._{s},\n", .{d.id[0..12]});
251254 }
252255 try w.writeAll("}");