diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-20 19:19:59 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-20 19:27:08 +0100 |
commit | d5d889a81b99bf54dca1201f10b21b3de8b6c4d7 (patch) | |
tree | 60e4c5aaf1f4bb57dda02ee9a0d2b2cb6518e59a /bin | |
parent | ed67648f5c9842bdf4595ca89e9faaee04f6d053 (diff) | |
download | jenkins.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')
-rwxr-xr-x | bin/reproducible_html_all_packages.py | 5 |
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() |