We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--fingerprint
1 parent cb8484a commit d7c4318Copy full SHA for d7c4318
lib/gpg.js
@@ -49,10 +49,11 @@ async function getUsernames(keyId /* : string */) {
49
50
async function listKnownPublicKeys() {
51
const { all, stdout } = await execa(await exe(), [
52
- '--list-public-keys',
+ '--list-keys',
53
+ '--fingerprint',
54
'--textmode',
55
]);
- debug('listKnownPublicKeys(): gpg --list-public-keys --textmode\n%s', all);
56
+ debug('listKnownPublicKeys(): gpg --list-keys --fingerprint --textmode\n%s', all);
57
58
return stdout
59
.split('\n\n')
0 commit comments