authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-02-20 18:54:33 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-02-20 18:54:33 -08:00
log5857a17d93e8e06633a005894a89eda472c53aa9
tree73c6060b7354f06e4a27216883751e4ca8be8df0
parent00570cf86a46df24c761918bf5507c9b3fbed8e0

cmd/zpm/add- add a spacer line between dependencies


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

src/cmd_zpm_add.zig+1
...@@ -81,6 +81,7 @@ pub fn execute(args: [][]u8) !void {...@@ -81,6 +81,7 @@ pub fn execute(args: [][]u8) !void {
81 try file.seekTo(try file.getEndPos());81 try file.seekTo(try file.getEndPos());
82 82
83 const file_w = file.writer();83 const file_w = file.writer();
84 try file_w.print("\n", .{});
84 try file_w.print(" - src: git {s}\n", .{found.git});85 try file_w.print(" - src: git {s}\n", .{found.git});
85 try file_w.print(" name: {s}\n", .{found.name});86 try file_w.print(" name: {s}\n", .{found.name});
86 try file_w.print(" main: {s}\n", .{found.root_file.?[1..]});87 try file_w.print(" main: {s}\n", .{found.root_file.?[1..]});