1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-08-15 19:00:11 +02:00

remove build output when not reproducible

This commit is contained in:
Michael Pöhn 2017-04-23 11:33:51 +02:00
parent 5b7209d882
commit fc4e40255d

View File

@ -1231,6 +1231,10 @@ def main():
compare_result = \
common.verify_apks(of, unsigned_apk, tmpdir)
if compare_result:
logging.debug('removing %s', unsigned_apk)
os.remove(unsigned_apk)
logging.debug('removing %s', of)
os.remove(of)
compare_result = compare_result.split('\n')
line_count = len(compare_result)
compare_result = compare_result[:299]