mirror of
https://github.com/codecov/codecov-action.git
synced 2026-04-12 17:10:05 +00:00
try with spawn and stdio
This commit is contained in:
parent
0ef06c1065
commit
5a763c2508
2 changed files with 6 additions and 2 deletions
|
|
@ -26,7 +26,9 @@ try {
|
|||
fs.chmodSync(filename, '777');
|
||||
|
||||
try {
|
||||
childProcess.execFileSync(filename);
|
||||
childProcess.spawnSync(filename, {
|
||||
stdio: ['pipe', process.stdout, process.stderr],
|
||||
});
|
||||
console.log('finished!');
|
||||
} catch (err) {
|
||||
core.setFailed(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue