diff options
Diffstat (limited to 'bin/reproducible_html_indexes.py')
-rwxr-xr-x | bin/reproducible_html_indexes.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index 0f665ce4..94a8da62 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -568,4 +568,8 @@ if __name__ == '__main__': for suite in SUITES: for arch in ARCHS: for page in pages.keys(): - build_page(page, suite, arch) + if 'global' not in pages[page] or not pages[page]['global']: + build_page(page, suite, arch) + for page in pages.keys(): + if 'global' in pages[page] and pages[page]['global']: + build_page(page) |