do not use full escaping path for cli args - does not correctly match command line behavior

This commit is contained in:
Ryan Fleury
2025-10-20 16:35:04 -07:00
parent 09418f1b08
commit 08698d739d
+1 -1
View File
@@ -10030,7 +10030,7 @@ rd_init(CmdLine *cmdln)
{
if(str8_find_needle(n->string, 0, str8_lit(" "), 0) < n->string.size)
{
str8_list_pushf(scratch.arena, &passthrough_args_list, "\"%S\"", escaped_from_raw_str8(scratch.arena, n->string));
str8_list_pushf(scratch.arena, &passthrough_args_list, "\"%S\"", n->string);
}
else
{