Skip to content

Commit b238744

Browse files
henryiiijcfr
authored andcommitted
fix: more info when this fails
1 parent 0131fa3 commit b238744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update_cmake_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def get_cmake_archive_urls_and_sha256s(version, verbose=False):
6262
sha256 = line.split()[0].strip()
6363
identifier = expected_files[file]
6464
shas[identifier] = sha256
65-
assert len(shas) == len(expected_files)
65+
assert len(shas) == len(expected_files), "{} != {}".format(len(shas), len(expected_files))
6666

6767
# Get download URLs for each asset
6868
urls = {}

0 commit comments

Comments
 (0)