From 2f36b31c5681a9a2de8cd766d63fa1bf1fdd5231 Mon Sep 17 00:00:00 2001 From: Adam Mansfield Date: Sat, 18 Apr 2026 17:37:49 -0400 Subject: [PATCH] chore(turbo): pass through PATHEXT On Windows, Turbo strict mode omits PATHEXT, so terminal-drawer commands with `dev:desktop` or `start:desktop` cannot resolve executables without explicit file extensions. --- turbo.json | 1 + 1 file changed, 1 insertion(+) diff --git a/turbo.json b/turbo.json index d4d58c15e6..e6ebeee912 100644 --- a/turbo.json +++ b/turbo.json @@ -23,6 +23,7 @@ "T3CODE_OTLP_EXPORT_INTERVAL_MS", "T3CODE_OTLP_SERVICE_NAME" ], + "globalPassThroughEnv": ["PATHEXT"], "tasks": { "build": { "dependsOn": ["^build"],