mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 20:31:37 -05:00
12 lines
257 B
JavaScript
12 lines
257 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; |