mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-09 20:47:26 +00:00
args
This commit is contained in:
parent
79bc42cc5a
commit
a3fb32f507
2 changed files with 2 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
|
@ -34556,7 +34556,7 @@ try {
|
|||
core.setFailed('Codecov: Could not properly download uploader binary' +
|
||||
err ? ": " + err : 0);
|
||||
}
|
||||
fs.writeFileSync(res.body, filename_1);
|
||||
fs.writeFileSync(filename_1, body);
|
||||
fs.chmodSync(filename_1, '777');
|
||||
if (fs.existsSync(filename_1)) {
|
||||
console.log('file exists');
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ try {
|
|||
err ? `: ${err}` : '',
|
||||
);
|
||||
}
|
||||
fs.writeFileSync(res.body, filename);
|
||||
fs.writeFileSync(filename, body);
|
||||
fs.chmodSync(filename, '777');
|
||||
if (fs.existsSync(filename)) {
|
||||
console.log('file exists');
|
||||
|
|
|
|||
Loading…
Reference in a new issue