| ... | @@ -61,7 +61,7 @@ pub fn execute(args: [][]u8) !void { | ... | @@ -61,7 +61,7 @@ pub fn execute(args: [][]u8) !void { |
| 61 | | 61 | |
| 62 | const file_w = file.writer(); | 62 | const file_w = file.writer(); |
| 63 | try file_w.print("\n", .{}); | 63 | try file_w.print("\n", .{}); |
| 64 | try file_w.print(" - src: git {s}\n", .{found.git}); | 64 | try file_w.print(" - src: git {s}\n", .{std.mem.trimRight(u8, found.git, ".git")}); |
| 65 | try file_w.print(" name: {s}\n", .{found.name}); | 65 | try file_w.print(" name: {s}\n", .{found.name}); |
| 66 | try file_w.print(" main: {s}\n", .{found.root_file.?[1..]}); | 66 | try file_w.print(" main: {s}\n", .{found.root_file.?[1..]}); |
| 67 | | 67 | |