hashing, print what the hashes look like

This commit is contained in:
Jonathan Lin 2022-03-30 09:13:09 -04:00
Родитель 5de4dd717c
Коммит 448c74bdea
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -186,6 +186,8 @@ def hash_file(filename, man_hash):
if hash_check.hexdigest() == autohash_firefox():
print("\rThe hash for %s matches the official Firefox hash" % filename)
else:
print(hash_check.hexdigest())
print(autohash_firefox())
print("WARNING: The the hash for %s is unexpected." % filename)
exit(1)
else: