authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-29 03:31:51 -08:00
committergravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-29 03:31:51 -08:00
logab3dba434722e6000b7dabd3265f50bfb2ebf1b7
tree2d50ecb9e113849be1794fb8feec69815ff52754
parentd01eb7141b96b190937d06cc617cd8fcf6eac06c

sum: print hash and then path


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

src/cmd_sum.zig+1-1
......@@ -25,7 +25,7 @@ pub fn execute(args: [][]u8) !void {
2525
2626 for (module_list.items) |m| {
2727 const hash = try m.get_hash(dir);
28 try w.print("{} {}\n", .{m.clean_path, hash});
28 try w.print("{} {}\n", .{hash, m.clean_path});
2929 }
3030}
3131