Skip to content

Commit 51f6612

Browse files
committed
fixup
1 parent ed0fb03 commit 51f6612

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ci/tests/run_perf_test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ async function runCommand(command) {
88
const output = await exec(command, { encoding: 'utf8', stdio: 'pipe' });
99
return output.stdout;
1010
} catch (error) {
11-
const errorOutput = error.stdout || error.stderr || error.message;
12-
return errorOutput;
11+
return (error.stdout || '') + (error.stderr || '') + (error.message || '');
1312
}
1413
}
1514

0 commit comments

Comments
 (0)