We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84ccf2c commit 6cba129Copy full SHA for 6cba129
1 file changed
packages/core-node/src/bootstrap/shell-path.ts
@@ -49,7 +49,7 @@ async function createUpdateShellPathPromise(): Promise<void> {
49
shellPath = await new Promise((resolve, reject) => {
50
const buf: Buffer[] = [];
51
const proc = spawn(
52
- '/bin/bash',
+ process.env.SHELL || '/bin/bash',
53
['-ilc', 'echo -n "_SHELL_ENV_DELIMITER_"; env; echo -n "_SHELL_ENV_DELIMITER_"; exit;'],
54
{
55
stdio: ['ignore', 'pipe', 'pipe'],
0 commit comments