Commit 4a2ea3b3 authored by Łukasz Nowak's avatar Łukasz Nowak

Support no md5sum.

parent 2cd36cb7
......@@ -362,6 +362,8 @@ call(["make", "install"], cwd=workdir, env=env)
if ' ' in patch:
patch, md5sum = patch.split(' ', 1)
md5sum = md5sum.strip()
if md5sum.lower() == 'unknown':
md5sum = None
else:
md5sum = None
if md5sum is not None and ' ' in md5sum:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment