authorgravatar for der.teufel.mail@gmail.comKrzysztof Wolicki <der.teufel.mail@gmail.com> 2024-07-14 02:07:11+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-07-13 22:39:53-07:00
logfba618a6c9ae4f70dc8a7879975adf31d3a44d4d
tree5265c3c3d35924bae730c297968c2428d8742cf8
parentee6a52b40f9836beb0d35820d1987f3c7e522f45

Fix handling of `--save-exact=name` in fetch


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

src/main.zig+1-1
......@@ -6921,7 +6921,7 @@ fn cmdFetch(
69216921 } else if (mem.eql(u8, arg, "--save-exact")) {
69226922 save = .{ .exact = null };
69236923 } else if (mem.startsWith(u8, arg, "--save-exact=")) {
6924 save = .{ .exact = arg["--save=".len..] };
6924 save = .{ .exact = arg["--save-exact=".len..] };
69256925 } else {
69266926 fatal("unrecognized parameter: '{s}'", .{arg});
69276927 }