diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2019-02-22 13:28:19 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2019-02-22 13:34:53 +0100 |
commit | a094b543324267e6d956bb0df2ede990b90118cb (patch) | |
tree | 2a0de5bb4e1f800d6b5c23dc84ffddce8163580f | |
parent | a83aedca1889709feb8e6b2d2d18340151220338 (diff) | |
parent | a786c3b30639a63ded5b3b81c393d56336d34dce (diff) |
Merge #15273: docs: Slight tweak to the verify-commits script directions
a786c3b30639a63ded5b3b81c393d56336d34dce Slight tweak to the verify-commits script directions (Douglas Roark)
Pull request description:
Clarify that GnuPG may be used on both Linux and macOS to obtain the keys required to verify the commits.
Tree-SHA512: cec556370f03e00bbd6f585d26b360ca236cf55cb5c0996f6d950d8a98f77c92cc02f1719c8f9b9dc9eac6900eb341a13b50a012752832f39095b7e84046f2cd
-rw-r--r-- | contrib/verify-commits/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/verify-commits/README.md b/contrib/verify-commits/README.md index 27ca15acb4..1215962a16 100644 --- a/contrib/verify-commits/README.md +++ b/contrib/verify-commits/README.md @@ -37,7 +37,8 @@ Configuration files Import trusted keys ------------------- -In order to check the commit signatures you must add the trusted PGP keys to your machine. This can be done in Linux by running +In order to check the commit signatures, you must add the trusted PGP keys to your machine. [GnuPG](https://gnupg.org/) may be used to import the trusted keys by running the following command: + ```sh gpg --recv-keys $(<contrib/verify-commits/trusted-keys) ``` |