Browse Source

make_download: show which file failed signaure check

283
ThomasV 10 years ago
parent
commit
3b8184cef3
  1. 2
      contrib/make_download

2
contrib/make_download

@ -41,7 +41,7 @@ for k, n in files.items():
string = re.sub("<div id=\"%s\">(.*?)</div>"%k, '', string, flags=re.DOTALL + re.MULTILINE)
continue
if os.system("gpg --verify %s"%sigpath) != 0:
raise
raise BaseException(sigpath)
string = string.replace("##link_%s##"%k, link)

Loading…
Cancel
Save