From 5ba038c3eb07fc94fc8d6f46b451f552bfc121a4 Mon Sep 17 00:00:00 2001 From: tsne Date: Fri, 19 Jun 2026 13:09:03 +0200 Subject: minor bugfixes and output formatting --- src/git.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/git.zig') diff --git a/src/git.zig b/src/git.zig index fc0d81b..1b49eed 100644 --- a/src/git.zig +++ b/src/git.zig @@ -41,7 +41,7 @@ pub const Repo = struct { pub fn clone(self: Repo, env: *const Env) !void { const dir = try fs.dir_info(&self.path); if (!dir.exists or dir.empty) { - var branch_buf: [std.fs.max_name_bytes]u8 = undefined; + var branch_buf: [std.Io.Dir.max_name_bytes]u8 = undefined; const branch_param = branch_buf[0 .. 9 + self.branch.len]; @memcpy(branch_param[0..9], "--branch="); @memcpy(branch_param[9..], self.branch); -- cgit v1.3