Skip to content

Commit ad84160

Browse files
committed
contrib: minor doc improvements in verify-binaries
1 parent e2e5683 commit ad84160

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contrib/verify-binaries/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ threshold of at least 10 trusted signatures:
6060
--min-good-sigs 10 pub 22.0-x86
6161
```
6262

63-
If you only want to download the binaries of certain platform, add the corresponding suffix, e.g.:
63+
If you only want to download the binaries for a certain platform, add the corresponding suffix, e.g.:
6464

6565
```sh
6666
./contrib/verify-binaries/verify.py pub 24.0.1-darwin

contrib/verify-binaries/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def main():
1212
expect_code(run_verify("", "pub", '0.32.awefa.12f9h'), 11, "Malformed version should fail")
1313
expect_code(run_verify('--min-good-sigs 20', "pub", "22.0"), 9, "--min-good-sigs 20 should fail")
1414

15-
print("- testing multisig verification (22.0)", flush=True)
15+
print("- testing verification (22.0)", flush=True)
1616
_220 = run_verify("--json", "pub", "22.0")
1717
try:
1818
result = json.loads(_220.stdout.decode())

contrib/verify-binaries/verify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def cleanup():
530530

531531
# download binaries
532532
for _, binary_filename in hashes_to_verify:
533-
log.info(f"downloading {binary_filename}")
533+
log.info(f"downloading {binary_filename} to {WORKINGDIR}")
534534
success, output = download_with_wget(
535535
HOST1 + remote_dir + binary_filename, binary_filename)
536536

0 commit comments

Comments
 (0)