From dd6c653fe909b1ddf3c9e8fbbc6fa3871ddc0a86 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Tue, 30 Sep 2025 23:19:32 -0400 Subject: [PATCH] agent: Fix terminal tool on Windows (#39260) Seems like we don't want to escape the dollar sign in `$null`. Release Notes: - N/A --- crates/task/src/shell_builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/task/src/shell_builder.rs b/crates/task/src/shell_builder.rs index 074f73a421a198c6fba39d0232550215bfd3eec4..5316154a82b063f8302a962e348c7567a9265634 100644 --- a/crates/task/src/shell_builder.rs +++ b/crates/task/src/shell_builder.rs @@ -288,7 +288,7 @@ impl ShellBuilder { combined_command.push_str(") { - combined_command.insert_str(0, "`$null | & {"); + combined_command.insert_str(0, "$null | & {"); combined_command.push_str("}"); } ShellKind::Cmd => {