summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-01-10 03:01:04 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-11 00:39:20 +0000
commit6e2c7330140d2d1a366a86faacd7e12f34e5e328 (patch)
tree49630063d9bd7ea7ece96a7bad7b5b5a785d5f25 /bin/reproducible_html_notes.py
parent39dd3cc2291d2cf526fc21389f595bfa18e92205 (diff)
downloadjenkins.debian.net-6e2c7330140d2d1a366a86faacd7e12f34e5e328.tar.xz
reproducible: html_notes: call process_packages() from reproducible_html_packages to recreate rb-pkg/package.html pages
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py2
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))