diff options
author | drduh <github@duh.to> | 2024-05-06 01:33:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 01:33:25 +0000 |
commit | 5efcddc9e77892d4725b3ddd3cfbed71b5e0a18d (patch) | |
tree | c00ad2aa911bbc6c70652a8e7fa50b54157d9722 | |
parent | Merge pull request #438 from manuth/diceware-webapp (diff) | |
parent | Export the `GNUPGHOME` variable (diff) | |
download | YubiKey-Guide-5efcddc9e77892d4725b3ddd3cfbed71b5e0a18d.tar.gz |
Merge pull request #440 from manuth/fix-gnupghome-var
Suggest Exporting the `GNUPGHOME` Variable in the Guide
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -256,7 +256,7 @@ sudo dnf install \ Create a temporary directory which will be cleared on [reboot](https://en.wikipedia.org/wiki/Tmpfs) and set it as the GnuPG directory: ```console -GNUPGHOME=$(mktemp -d -t gnupg-$(date +%Y-%m-%d)-XXXXXXXXXX) +export GNUPGHOME=$(mktemp -d -t gnupg-$(date +%Y-%m-%d)-XXXXXXXXXX) ``` ## Configuration |