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 3bd5471 commit 7553bd1Copy full SHA for 7553bd1
dev-packages/node-overhead-gh-action/lib/getOverheadMeasurements.mjs
@@ -13,7 +13,7 @@ async function getMeasurements(instrumentFile) {
13
14
log(`Getting measurements for "${cmd}"`);
15
16
- const appProcess = spawn(cmd, { shell: 'bash' });
+ const appProcess = spawn(cmd, { shell: true });
17
18
await new Promise(resolve => {
19
appProcess.stdout.on('data', data => {
@@ -24,7 +24,7 @@ async function getMeasurements(instrumentFile) {
24
});
25
26
const autocannon = spawn('yarn test', {
27
- shell: 'bash',
+ shell: true,
28
29
30
let lastJson = undefined;
0 commit comments