fix: io the import

This commit is contained in:
Tom Hu 2024-05-14 11:47:05 +07:00
parent dfadebbadd
commit f4998944ee
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

@ -32739,7 +32739,7 @@ const verify = (filename, platform, version, verbose, failCi) => validate_awaite
external_node_path_namespaceObject.join(__dirname, 'pgp_keys.asc'),
].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 importing gpg key: ${err.message}`, failCi);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View file

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