mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
13 lines
198 B
TypeScript
13 lines
198 B
TypeScript
import os from "node:os";
|
|
|
|
export const getShell = () => {
|
|
switch (os.platform()) {
|
|
case "win32":
|
|
return "powershell.exe";
|
|
case "darwin":
|
|
return "zsh";
|
|
default:
|
|
return "bash";
|
|
}
|
|
};
|