diff options
author | drduh <github@duh.to> | 2024-06-30 16:44:40 -0700 |
---|---|---|
committer | drduh <github@duh.to> | 2024-06-30 16:44:40 -0700 |
commit | 72eead099ce069a768fac3f171a28852b5fb866b (patch) | |
tree | d47d8c0fe99516896e7ada5cc745620602cc3b60 | |
parent | Renew expired subkeys, fix #442 (diff) | |
download | YubiKey-Guide-72eead099ce069a768fac3f171a28852b5fb866b.tar.gz |
Should only have one identity loaded when renewing
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1815,7 +1815,7 @@ Renew the Subkeys: ```console gpg --batch --pinentry-mode=loopback \ --passphrase "$CERTIFY_PASS" --quick-set-expire "$KEYFP" "$EXPIRATION" \ - $(gpg -k --with-colons $IDENTITY | awk -F: '/^fpr:/ { print $10 }' | tail -n "+2" | tr "\n" " ") + $(gpg -K --with-colons | awk -F: '/^fpr:/ { print $10 }' | tail -n "+2" | tr "\n" " ") ``` Export the updated public key: |