mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-23 16:38:12 +00:00
12 lines
362 B
JavaScript
12 lines
362 B
JavaScript
// Resolves Windows system binaries without trusting PATH.
|
|
import {
|
|
resolveWindowsPowerShellPath,
|
|
resolveWindowsSystem32Path,
|
|
} from "../windows-cmd-helpers.mjs";
|
|
|
|
export { resolveWindowsPowerShellPath, resolveWindowsSystem32Path };
|
|
|
|
export function resolveWindowsTaskkillPath(env = process.env) {
|
|
return resolveWindowsSystem32Path("taskkill.exe", env);
|
|
}
|