default-shell.js 250 B

123456789101112
  1. // Mock default shell based on platform
  2. const os = require("os")
  3. let defaultShell
  4. if (os.platform() === "win32") {
  5. defaultShell = "cmd.exe"
  6. } else {
  7. defaultShell = "/bin/bash"
  8. }
  9. module.exports = defaultShell
  10. module.exports.default = defaultShell