python/build/download: raise RuntimeError
This commit is contained in:
parent
52652cb609
commit
5626ace245
@ -34,7 +34,7 @@ def download_and_verify(url, md5, parent_path):
|
|||||||
calculated_md5 = file_md5(tmp_path)
|
calculated_md5 = file_md5(tmp_path)
|
||||||
if calculated_md5 != md5:
|
if calculated_md5 != md5:
|
||||||
os.unlink(tmp_path)
|
os.unlink(tmp_path)
|
||||||
raise "MD5 mismatch"
|
raise RuntimeError("MD5 mismatch")
|
||||||
|
|
||||||
os.rename(tmp_path, path)
|
os.rename(tmp_path, path)
|
||||||
return path
|
return path
|
||||||
|
Loading…
Reference in New Issue
Block a user