We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b87b6 commit 44531f9Copy full SHA for 44531f9
1 file changed
Tools/coinstall-check/compare.py
@@ -11,7 +11,7 @@
11
import json
12
13
14
-def compare_trees(base: Path) -> bool:
+def compare_install_manifests(base: Path) -> bool:
15
"""Compare all json manifests inside the directory at base."""
16
hashes_seen: dict[str, str] = {}
17
tags_seen_by_platform: dict[str, set[frozenset[str]]] = {}
@@ -110,7 +110,7 @@ def main() -> None:
110
help="Directory containing hashes of Python installs.",
111
)
112
args = p.parse_args()
113
- if not compare_trees(args.base_directory):
+ if not compare_install_manifests(args.base_directory):
114
raise SystemExit(1)
115
116
0 commit comments