From 0aa96bff797ae4aada3413f505d1bfcfeeb6c718 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Arrufat?= Date: Wed, 8 Apr 2026 11:55:58 +0200 Subject: [PATCH] config: remove --no-record agent argument --- src/Config.zig | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Config.zig b/src/Config.zig index 7b3359f5..b4276227 100644 --- a/src/Config.zig +++ b/src/Config.zig @@ -950,11 +950,6 @@ fn parseAgentArgs( continue; } - if (std.mem.eql(u8, "--no-record", opt) or std.mem.eql(u8, "--no_record", opt)) { - result.record_file = null; - continue; - } - if (try parseCommonArg(allocator, opt, args, &result.common)) { continue; }