Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2020-10-28 20:50:23 +0300
committerRuy Adorno <ruyadorno@hotmail.com>2020-10-30 20:31:23 +0300
commit3990b422d3ff63c54d96b61596bdb8f26a45ca7b (patch)
tree5ccc814c47867d305eb3411016bb29a9ae0da281 /test/lib/utils
parentd4119b0d42a3e78212aeb0df04825b3f06982e6b (diff)
use sh as default unix shell, not bash
PR-URL: https://github.com/npm/cli/pull/2067 Credit: @isaacs Close: #2067 Reviewed-by: @nlf
Diffstat (limited to 'test/lib/utils')
-rw-r--r--test/lib/utils/config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/utils/config.js b/test/lib/utils/config.js
index 293e68c00..e8133eecb 100644
--- a/test/lib/utils/config.js
+++ b/test/lib/utils/config.js
@@ -138,7 +138,7 @@ t.test('no shell on posix', t => {
'@npmcli/ci-detect': () => false,
'../../../lib/utils/is-windows.js': false
})
- t.equal(config.defaults.shell, 'bash')
+ t.equal(config.defaults.shell, 'sh')
t.end()
})