mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
export function shell() {
|
|
const s = process.env.SHELL
|
|
if (s) return s
|
|
if (process.platform === "darwin") {
|
|
return "/bin/zsh"
|
|
}
|
|
if (process.platform === "win32") {
|
|
return process.env.COMSPEC || "cmd.exe"
|
|
}
|
|
const bash = Bun.which("bash")
|
|
if (bash) return bash
|
|
return "bash"
|
|
}
|