diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-01-10 03:01:04 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-11 00:39:20 +0000 |
commit | 6e2c7330140d2d1a366a86faacd7e12f34e5e328 (patch) | |
tree | 49630063d9bd7ea7ece96a7bad7b5b5a785d5f25 | |
parent | 39dd3cc2291d2cf526fc21389f595bfa18e92205 (diff) | |
download | jenkins.debian.net-6e2c7330140d2d1a366a86faacd7e12f34e5e328.tar.xz |
reproducible: html_notes: call process_packages() from reproducible_html_packages to recreate rb-pkg/package.html pages
-rwxr-xr-x | bin/reproducible_html_notes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 2a22b30b..d5d5e4a3 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -9,6 +9,7 @@ import yaml from reproducible_common import * +from reproducible_html_packages import process_packages NOTES = 'packages.yml' ISSUES = 'issues.yml' @@ -270,6 +271,7 @@ def iterate_over_notes(notes): desturl = REPRODUCIBLE_URL + NOTES_URI + '/' + package + '_note.html' log.info("you can now see your notes at " + desturl) i = i + 1 + process_packages(notes) # regenerate all rb-pkg/ pages def iterate_over_issues(issues): num_issues = str(len(issues)) |