mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-22 13:21:07 -05:00
Prettier backfill
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
// Mock default shell based on platform
|
||||
const os = require('os');
|
||||
const os = require("os")
|
||||
|
||||
let defaultShell;
|
||||
if (os.platform() === 'win32') {
|
||||
defaultShell = 'cmd.exe';
|
||||
let defaultShell
|
||||
if (os.platform() === "win32") {
|
||||
defaultShell = "cmd.exe"
|
||||
} else {
|
||||
defaultShell = '/bin/bash';
|
||||
defaultShell = "/bin/bash"
|
||||
}
|
||||
|
||||
module.exports = defaultShell;
|
||||
module.exports.default = defaultShell;
|
||||
module.exports = defaultShell
|
||||
module.exports.default = defaultShell
|
||||
|
||||
Reference in New Issue
Block a user