mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-14 15:07:25 +00:00
fix: perhaps console
This commit is contained in:
parent
fc4827b90e
commit
e8d41e0592
3 changed files with 3 additions and 3 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
|
@ -32723,7 +32723,7 @@ const verify = (filename, platform, version, verbose, failCi) => validate_awaite
|
||||||
external_node_path_namespaceObject.join(__dirname, `${uploaderName}.SHA256SUM`),
|
external_node_path_namespaceObject.join(__dirname, `${uploaderName}.SHA256SUM`),
|
||||||
].join(' ');
|
].join(' ');
|
||||||
try {
|
try {
|
||||||
yield (0,external_node_child_process_namespaceObject.execSync)(command);
|
yield (0,external_node_child_process_namespaceObject.execSync)(command, { stdio: 'inherit' });
|
||||||
}
|
}
|
||||||
catch (err) {
|
catch (err) {
|
||||||
setFailure(`Codecov: Error verifying gpg signature: ${err.message}`, failCi);
|
setFailure(`Codecov: Error verifying gpg signature: ${err.message}`, failCi);
|
||||||
|
|
|
||||||
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -87,7 +87,7 @@ const verify = async (
|
||||||
].join(' ');
|
].join(' ');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await execSync(command);
|
await execSync(command, {stdio: 'inherit'});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
setFailure(`Codecov: Error verifying gpg signature: ${err.message}`, failCi);
|
setFailure(`Codecov: Error verifying gpg signature: ${err.message}`, failCi);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue