mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 03:57:26 +00:00
fix: io the import
This commit is contained in:
parent
dfadebbadd
commit
f4998944ee
3 changed files with 3 additions and 3 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
|
@ -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
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue