diff --git a/src/main/helpers/os.helpers.ts b/src/main/helpers/os.helpers.ts index 6f22ff4f..99a12258 100644 --- a/src/main/helpers/os.helpers.ts +++ b/src/main/helpers/os.helpers.ts @@ -41,8 +41,8 @@ function updateCommand(command: string, options: BsmSpawnOptions) { if (process.platform === "linux") { // "/bin/sh" does not see flatpak-spawn - // Most Debian and Arch should also support "/bin/bash" - options.options.shell = "/bin/bash"; + // All distros should support "bash" by default + options.options.shell = "bash"; if (options.linux?.prefix) { command = `${options.linux.prefix} ${command}`;