mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
remove build output when not reproducible
This commit is contained in:
parent
5b7209d882
commit
fc4e40255d
1 changed files with 4 additions and 0 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue