fix: perhaps console

This commit is contained in:
Tom Hu 2024-05-14 11:43:57 +07:00
parent fc4827b90e
commit e8d41e0592
No known key found for this signature in database
GPG key ID: 79155678363963D2
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View file

@ -32723,7 +32723,7 @@ const verify = (filename, platform, version, verbose, failCi) => validate_awaite
external_node_path_namespaceObject.join(__dirname, `${uploaderName}.SHA256SUM`),
].join(' ');
try {
yield (0,external_node_child_process_namespaceObject.execSync)(command);
yield (0,external_node_child_process_namespaceObject.execSync)(command, { stdio: 'inherit' });
}
catch (err) {
setFailure(`Codecov: Error verifying gpg signature: ${err.message}`, failCi);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View file

@ -87,7 +87,7 @@ const verify = async (
].join(' ');
try {
await execSync(command);
await execSync(command, {stdio: 'inherit'});
} catch (err) {
setFailure(`Codecov: Error verifying gpg signature: ${err.message}`, failCi);
}