Files
fusion/packages/engine/src/shell-utils.ts
Fusion db95f77d7b feat(FN-2689): standardize cross-platform shell selection
- Add engine shell utility to resolve the correct shell per platform
- Update routine runner to execute commands through shared shell selection
- Update cron runner to use the same cross-platform shell behavior
- Apply shared shell handling in dashboard routes for command execution
- Add shell utility tests covering platform-specific selection behavior
2026-04-27 08:33:03 -07:00

2 lines
82 B
TypeScript

export const defaultShell = process.platform === "win32" ? "cmd.exe" : "/bin/sh";