diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-06-02 10:16:51 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-02 10:22:04 +0200 |
commit | 54ab8fecbf50ec7faa57260f4e99943d977042e8 (patch) | |
tree | 43fc90a237391e94e5fa5ca633b4c25a50e0cb28 | |
parent | 288aada2d29410c9e123e18fb9a3612b367981e6 (diff) | |
download | jenkins.debian.net-54ab8fecbf50ec7faa57260f4e99943d977042e8.tar.xz |
reproducible: setup_notify: also rebuild index_notify.html when changing notification settings
-rwxr-xr-x | bin/reproducible_setup_notify.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_setup_notify.py b/bin/reproducible_setup_notify.py index 6e504118..f3fbe9f6 100755 --- a/bin/reproducible_setup_notify.py +++ b/bin/reproducible_setup_notify.py @@ -27,6 +27,7 @@ local_args = parser.parse_known_args()[0] # these are here as an hack to be able to parse the command line from reproducible_common import * from reproducible_html_packages import gen_packages_html +from reproducible_html_indexes import build_page class bcolors: @@ -92,3 +93,4 @@ for package in packages: process_pkg(package, local_args.deactivate) gen_packages_html(packages, no_clean=True) +build_page('notify') |