mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-21 21:01:06 -05:00
13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
// Mock default shell based on platform
|
|
const os = require("os")
|
|
|
|
let defaultShell
|
|
if (os.platform() === "win32") {
|
|
defaultShell = "cmd.exe"
|
|
} else {
|
|
defaultShell = "/bin/bash"
|
|
}
|
|
|
|
module.exports = defaultShell
|
|
module.exports.default = defaultShell
|