| ... | ... | @@ -60,9 +60,9 @@ fn fetch_deps(dir: []const u8, mpath: []const u8) anyerror!u.Module { |
| 60 | 60 | const moduledeps = &std.ArrayList(u.Module).init(gpa); |
| 61 | 61 | for (m.deps) |d| { |
| 62 | 62 | const p = try std.fmt.allocPrint(gpa, "{}{}{}", .{dir, "/", try d.clean_path()}); |
| 63 | u.print("fetch: {}: {}: {}", .{m.name, @tagName(d.type), d.path}); |
| 63 | 64 | switch (d.type) { |
| 64 | 65 | .git => { |
| 65 | | u.print("fetch: {}: {}: {}", .{m.name, @tagName(d.type), d.path}); |
| 66 | 66 | if (!try u.does_file_exist(p)) { |
| 67 | 67 | try run_cmd(null, &[_][]const u8{"git", "clone", d.path, p}); |
| 68 | 68 | } |