From 2c70c40499d260804d3e6441f6e8ff8b88378a8c Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 19 May 2026 15:37:32 -0700 Subject: [PATCH] configurer: fix serialization of Run path_directory args --- lib/compiler/configurer.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compiler/configurer.zig b/lib/compiler/configurer.zig index d07f77b118aeb4e15978d05873188724ba595b3b..a4c661b1f4431b2cf5bcea46019d3afdae6b4b16 100644 --- a/lib/compiler/configurer.zig +++ b/lib/compiler/configurer.zig @@ -358,7 +358,7 @@ const Serialize = struct { .link_libc = false, }, .prefix = .{ .value = if (a.prefix.len != 0) try wc.addString(a.prefix) else null }, - .suffix = .{ .value = try addOptionalString(s, a.suffix) }, + .suffix = .{ .value = if (a.suffix.len != 0) try wc.addString(a.suffix) else null }, .basename = .{ .value = null }, .path = .{ .value = try addLazyPath(s, a.lazy_path) }, .producer = .{ .value = null }, -- 2.54.0