From e4877656cad18c7be3825fe9c6125a73ba99df31 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 20 Jan 2026 11:58:14 +0000 Subject: [PATCH] fix: add path import for shell utils (#1298) (thanks @sibbl) --- src/agents/shell-utils.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/agents/shell-utils.ts b/src/agents/shell-utils.ts index 08069e5e2..6d4efac59 100644 --- a/src/agents/shell-utils.ts +++ b/src/agents/shell-utils.ts @@ -1,5 +1,6 @@ -import fs from "node:fs"; import { spawn } from "node:child_process"; +import fs from "node:fs"; +import path from "node:path"; function resolvePowerShellPath(): string { const systemRoot = process.env.SystemRoot || process.env.WINDIR;