Skip to content

Commit 87dff09

Browse files
dscotesejanus
authored andcommitted
doc: Add gpg key import instructions for Windows
This is a single commit to replace the three commits from bitcoin/bitcoin PR #23619.
1 parent 1688ef7 commit 87dff09

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

contrib/builder-keys/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,15 @@ gpg --refresh-keys
1919
To fetch keys of builders and active developers, feed the list of fingerprints
2020
of the primary keys into gpg:
2121

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

27+
On Windows (requires Gpg4win >= 4.0.0):
28+
```
29+
FOR /F "tokens=1" %i IN (keys.txt) DO gpg --keyserver hkps://keys.openpgp.org --recv-keys %i
30+
```
31+
2632
Add your key to the list if you provided Guix attestations for two major or
2733
minor releases of BGL Core.

0 commit comments

Comments
 (0)