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 ed0fb03 commit 51f6612Copy full SHA for 51f6612
ci/tests/run_perf_test.js
@@ -8,8 +8,7 @@ async function runCommand(command) {
8
const output = await exec(command, { encoding: 'utf8', stdio: 'pipe' });
9
return output.stdout;
10
} catch (error) {
11
- const errorOutput = error.stdout || error.stderr || error.message;
12
- return errorOutput;
+ return (error.stdout || '') + (error.stderr || '') + (error.message || '');
13
}
14
15
0 commit comments