Skip to content

Commit

Permalink
doc: Add gpg key import instructions for Windows
Browse files Browse the repository at this point in the history
This is a single commit to replace the three commits from bitcoin/bitcoin PR #23619.
  • Loading branch information
dscotese authored and janus committed Jul 26, 2022
1 parent 1688ef7 commit 87dff09
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions contrib/builder-keys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,15 @@ gpg --refresh-keys
To fetch keys of builders and active developers, feed the list of fingerprints
of the primary keys into gpg:

On \*NIX:
```sh
while read fingerprint keyholder_name; do gpg --keyserver hkps://keys.openpgp.org --recv-keys ${fingerprint}; done < ./keys.txt
```

On Windows (requires Gpg4win >= 4.0.0):
```
FOR /F "tokens=1" %i IN (keys.txt) DO gpg --keyserver hkps://keys.openpgp.org --recv-keys %i
```

Add your key to the list if you provided Guix attestations for two major or
minor releases of BGL Core.

0 comments on commit 87dff09

Please sign in to comment.