Merge branch 'some-compatibility-fixes' of https://gitlab.com/eighthave/fdroidserver

This commit is contained in:
Daniel Martí 2015-07-27 10:41:23 -07:00
commit b4d768b225
5 changed files with 35 additions and 9 deletions

View file

@ -1090,9 +1090,7 @@ def main():
logging.info("...retrieving " + url)
of = "{0}_{1}.apk.binary".format(app['id'], thisbuild['vercode'])
of = os.path.join(output_dir, of)
p = FDroidPopen(['wget', '-nv', '-O', of, url])
if p.returncode != 0 or not os.path.exists(of):
raise BuildException("...failed to retrieve " + url)
common.download_file(url, local_filename=of)
build_succeeded.append(app)
wikilog = "Build succeeded"