| author | |
| committer | |
| log | 3eb06b1220ed6e006ddc3b42cc683129df6a43d5 |
| tree | 2c126f807a67f46dc3d402f6c2bc8ca770bb5232 |
| parent | a4d18db64e8aa530d6e37d602fa69b95dc1f054e |
| signature |
1 files changed, 1 insertions(+), 0 deletions(-)
src/cmd/generate.zig+1| ... | ... | @@ -294,6 +294,7 @@ fn print_pkg_data_to(w: std.fs.File.Writer, alloc: std.mem.Allocator, cachepath: |
| 294 | 294 | if (mod.deps.len != 0) { |
| 295 | 295 | try w.writeAll(" .deps = &[_]*Package{"); |
| 296 | 296 | for (mod.deps, 0..) |moddep, j| { |
| 297 | if (moddep.type == .system_lib or moddep.type == .framework) continue; | |
| 297 | 298 | try w.print(" &_{s}", .{moddep.id[0..12]}); |
| 298 | 299 | if (j != mod.deps.len - 1) try w.writeAll(","); |
| 299 | 300 | } |