mirror of
https://github.com/actions/setup-java.git
synced 2025-04-20 01:46:46 +00:00
Prints error message encountered in cleanup-java (#220)
This commit is contained in:
parent
d34438b137
commit
7ac3cd263f
2 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ async function removePrivateKeyFromKeychain() {
|
|||
const keyFingerprint = core.getState(constants.STATE_GPG_PRIVATE_KEY_FINGERPRINT);
|
||||
await gpg.deleteKey(keyFingerprint);
|
||||
} catch (error) {
|
||||
core.setFailed('Failed to remove private key');
|
||||
core.setFailed(`Failed to remove private key due to: ${error.message}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue