diff options
author | Andres G. Aragoneses <knocte@gmail.com> | 2017-04-25 17:40:09 +0800 |
---|---|---|
committer | Andres G. Aragoneses <knocte@gmail.com> | 2017-06-06 13:33:19 +0800 |
commit | 8d4dafd774436a355b6aa49a44b867cf78c38f6d (patch) | |
tree | 9319664f69980eb602de881b9587ee91864b91c3 /contrib/verifybinaries/README.md | |
parent | 9fec4da0bec93a49798b5f5e92cf76e900759ee4 (diff) |
contrib/verifybinaries: allow filtering by platform
Downloading all the binaries of all platforms can take quite long,
especially for slow connections, which may deter people from using
this script and, therefore, to disregard security altogether.
This change introduces the new possibility of specifying the
platform along with the version number, so that only the binaries
that contain the platform name are downloaded.
Diffstat (limited to 'contrib/verifybinaries/README.md')
-rw-r--r-- | contrib/verifybinaries/README.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/verifybinaries/README.md b/contrib/verifybinaries/README.md index ed3e14fb6c..3ffe0a2f28 100644 --- a/contrib/verifybinaries/README.md +++ b/contrib/verifybinaries/README.md @@ -26,6 +26,14 @@ The script returns 0 if everything passes the checks. It returns 1 if either the ./verify.sh bitcoin-core-0.13.0-rc3 ``` +If you only want to download the binaries of certain platform, add the corresponding suffix, e.g.: + +```sh +./verify.sh bitcoin-core-0.11.2-osx +./verify.sh 0.12.0-linux +./verify.sh bitcoin-core-0.13.0-rc3-win64 +``` + If you do not want to keep the downloaded binaries, specify anything as the second parameter. ```sh |