summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_all_packages.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-03-20 19:19:59 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-20 19:27:08 +0100
commitd5d889a81b99bf54dca1201f10b21b3de8b6c4d7 (patch)
tree60e4c5aaf1f4bb57dda02ee9a0d2b2cb6518e59a /bin/reproducible_html_all_packages.py
parented67648f5c9842bdf4595ca89e9faaee04f6d053 (diff)
downloadjenkins.debian.net-d5d889a81b99bf54dca1201f10b21b3de8b6c4d7.tar.xz
reproducible: html_all_pages: purge_old_pages() only once, at the end, no once per suite
Diffstat (limited to 'bin/reproducible_html_all_packages.py')
-rwxr-xr-xbin/reproducible_html_all_packages.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_html_all_packages.py b/bin/reproducible_html_all_packages.py
index eafe5d4a..66d92b04 100755
--- a/bin/reproducible_html_all_packages.py
+++ b/bin/reproducible_html_all_packages.py
@@ -12,8 +12,9 @@
from reproducible_common import *
-from reproducible_html_packages import gen_all_rb_pkg_pages
+from reproducible_html_packages import gen_all_rb_pkg_pages, purge_old_pages
for suite in SUITES:
- gen_all_rb_pkg_pages(suite=suite)
+ gen_all_rb_pkg_pages(suite=suite, no_clean=True)
+purge_old_pages()