| author | |
| committer | |
| log | a0db32247bb63e1cdd14b00768d7ba1f272a4630 |
| tree | c6bd71249aaaa0f9fce7d949da193b5da8ad08c8 |
| parent | e200cf1b5505491274cbf12cdeb0478bf13f2370 |
1 files changed, 1 insertions(+), 1 deletions(-)
src/util/dep.zig+1-1| ... | ... | @@ -28,7 +28,7 @@ pub const Dep = struct { |
| 28 | 28 | p = u.trim_prefix(p, "https://"); |
| 29 | 29 | p = u.trim_prefix(p, "git://"); |
| 30 | 30 | p = u.trim_suffix(u8, p, ".git"); |
| 31 | p = try std.fmt.allocPrint(gpa, "{}{}{}", .{@tagName(self.type), "/", p}); | |
| 31 | p = try std.fs.path.join(gpa, &[_][]const u8{@tagName(self.type), p}); | |
| 32 | 32 | return p; |
| 33 | 33 | } |
| 34 | 34 |