mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-09 10:43:19 -05:00
verifybinaries: fix OS download filter
Co-authored-by: Reproducibility Matters <seb.kung@gmail.com>
This commit is contained in:
parent
8cdadd1729
commit
4b23b488d2
1 changed files with 1 additions and 1 deletions
|
@ -511,7 +511,7 @@ def verify_published_handler(args: argparse.Namespace) -> ReturnCode:
|
||||||
return sigs_status
|
return sigs_status
|
||||||
|
|
||||||
# Extract hashes and filenames
|
# Extract hashes and filenames
|
||||||
hashes_to_verify = parse_sums_file(SUMS_FILENAME, os_filter)
|
hashes_to_verify = parse_sums_file(SUMS_FILENAME, [os_filter])
|
||||||
if not hashes_to_verify:
|
if not hashes_to_verify:
|
||||||
log.error("no files matched the platform specified")
|
log.error("no files matched the platform specified")
|
||||||
return ReturnCode.NO_BINARIES_MATCH
|
return ReturnCode.NO_BINARIES_MATCH
|
||||||
|
|
Loading…
Add table
Reference in a new issue