mirror of
https://github.com/moltbot/moltbot.git
synced 2026-03-22 00:51:34 +00:00
10 lines
290 B
TypeScript
10 lines
290 B
TypeScript
export function buildNodeShellCommand(command: string, platform?: string | null) {
|
|
const normalized = String(platform ?? "")
|
|
.trim()
|
|
.toLowerCase();
|
|
if (normalized.includes("win")) {
|
|
return ["cmd.exe", "/d", "/s", "/c", command];
|
|
}
|
|
return ["/bin/sh", "-lc", command];
|
|
}
|