mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-09 20:47:26 +00:00
fix: console.trace
This commit is contained in:
parent
69c6af52b7
commit
b0795b4800
3 changed files with 3 additions and 1 deletions
1
dist/index.js
vendored
1
dist/index.js
vendored
|
|
@ -24602,6 +24602,7 @@ try {
|
|||
res.pipe(filePath);
|
||||
filePath
|
||||
.on('error', (err) => {
|
||||
core.info(`${console.trace()}`);
|
||||
core.info(`Stack: ${err.stack}`);
|
||||
setFailure(`Codecov:Failed to write uploader binary: ${err.message}\n${err}`, true);
|
||||
}).on('finish', () => src_awaiter(void 0, void 0, void 0, function* () {
|
||||
|
|
|
|||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -29,6 +29,7 @@ try {
|
|||
res.pipe(filePath);
|
||||
filePath
|
||||
.on('error', (err) => {
|
||||
core.info(`${console.trace()}`);
|
||||
core.info(`Stack: ${err.stack}`);
|
||||
setFailure(
|
||||
`Codecov:Failed to write uploader binary: ${err.message}\n${err}`,
|
||||
|
|
|
|||
Loading…
Reference in a new issue