| ... | @@ -27,6 +27,7 @@ pub fn execute(args: [][]u8) !void { | ... | @@ -27,6 +27,7 @@ pub fn execute(args: [][]u8) !void { |
| 27 | try dedupe_mod_list(module_list, top_module); | 27 | try dedupe_mod_list(module_list, top_module); |
| 28 | | 28 | |
| 29 | for (module_list.items) |m| { | 29 | for (module_list.items) |m| { |
| | 30 | if (m.clean_path.len == 0) { continue; } |
| 30 | const hash = try m.get_hash(dir); | 31 | const hash = try m.get_hash(dir); |
| 31 | try w.print("{s} {s}\n", .{hash, m.clean_path}); | 32 | try w.print("{s} {s}\n", .{hash, m.clean_path}); |
| 32 | } | 33 | } |