summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_breakages.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-09-29 01:03:06 +0200
committerHolger Levsen <holger@layer-acht.org>2016-09-29 01:03:06 +0200
commit69bb44f13854b87235680f4f56040da42cf568b4 (patch)
tree8facea2f620247fa7562aa053f125eebf18e929d /bin/reproducible_html_breakages.py
parente4c68558b3f8643256165d231c0cce6be1d20872 (diff)
downloadjenkins.debian.net-69bb44f13854b87235680f4f56040da42cf568b4.tar.xz
reproducible debian: remove old files which should not be there
Diffstat (limited to 'bin/reproducible_html_breakages.py')
-rwxr-xr-xbin/reproducible_html_breakages.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py
index f0d0814c..8a037342 100755
--- a/bin/reproducible_html_breakages.py
+++ b/bin/reproducible_html_breakages.py
@@ -161,7 +161,8 @@ def alien_log(directory=None):
try:
if os.path.getmtime('/'.join([root, file]))<time.time()-86400:
bad_files.append('/'.join([root, file]))
- log.warning('/'.join([root, file]) + ' should not be there and older than a day.')
+ os.remove('/'.join([root, file]))
+ log.warning('/'.join([root, file]) + ' should not be there and and was older than a day so it was removed.')
else:
log.info('ignoring ' + '/'.join([root, file]) + ' which should not be there, but is also less than 24h old and will probably soon be gone.')
except FileNotFoundError: