Skip to content

Commit 4604508

Browse files
committed
Merge bitcoin/bitcoin#25070: contrib: fix dirname on verify-commits
ded915e contrib: fix dirname on `verify-commits` (brunoerg) Pull request description: Fixes: https://github.com/bitcoin/bitcoin/runs/6309423255 ACKs for top commit: fanquake: ACK ded915e Tree-SHA512: fbc46e907ec6151aca76360b471f0f34b9fc7d7eb054616df61feaf392bc4710dc26a965adb432e91e18498d446787c388c7989d07e4858d0fbf6bf28074b24c
2 parents e4478d3 + ded915e commit 4604508

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/verify-commits/verify-commits.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def main():
8888
verified_sha512_root = f.read().splitlines()[0]
8989
with open(dirname + "/allow-revsig-commits", "r", encoding="utf8") as f:
9090
revsig_allowed = f.read().splitlines()
91-
with open(dirname + "/allow-unclean-merge-commit", "r", encoding="utf8") as f:
91+
with open(dirname + "/allow-unclean-merge-commits", "r", encoding="utf8") as f:
9292
unclean_merge_allowed = f.read().splitlines()
9393
with open(dirname + "/allow-incorrect-sha512-commits", "r", encoding="utf8") as f:
9494
incorrect_sha512_allowed = f.read().splitlines()

0 commit comments

Comments
 (0)