authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-06-20 13:40:48 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-06-20 13:40:48 -07:00
logf80411755fb8f5e7592721a0a0b08540ea605f31
tree85e84d0f37322a9518c1cdaade50da1778c92854
parent1c6ce7491fa6dc3dede4d9714edce861fc405b10

cmd/fetch- dont print empty local lines


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

src/common.zig+1-1
......@@ -86,7 +86,7 @@ fn get_moddir(basedir: []const u8, d: u.Dep, parent_name: []const u8, options: C
8686 const p = try std.fs.path.join(gpa, &.{ basedir, try d.clean_path() });
8787 const pv = try std.fs.path.join(gpa, &.{ basedir, try d.clean_path_v() });
8888 const tempdir = try std.fs.path.join(gpa, &.{ basedir, "temp" });
89 if (options.log) {
89 if (options.log and d.type != .local) {
9090 u.print("fetch: {s}: {s}: {s}", .{ parent_name, @tagName(d.type), d.path });
9191 }
9292 switch (d.type) {