We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4119b0 commit 3990b42Copy full SHA for 3990b42
lib/utils/config.js
@@ -21,7 +21,7 @@ const editor = process.env.EDITOR ||
21
(isWindows ? 'notepad.exe' : 'vi')
22
23
const shell = isWindows ? process.env.ComSpec || 'cmd'
24
- : process.env.SHELL || 'bash'
+ : process.env.SHELL || 'sh'
25
26
const { tmpdir, networkInterfaces } = require('os')
27
const getLocalAddresses = () => {
test/lib/utils/config.js
@@ -138,7 +138,7 @@ t.test('no shell on posix', t => {
138
'@npmcli/ci-detect': () => false,
139
'../../../lib/utils/is-windows.js': false
140
})
141
- t.equal(config.defaults.shell, 'bash')
+ t.equal(config.defaults.shell, 'sh')
142
t.end()
143
144
0 commit comments