diff options
author | Dan Fandrich <danf@mageia.org> | 2024-04-15 22:44:38 -0700 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-04-16 00:21:04 -0700 |
commit | 63160c8456f5fc561ce86a373d027d8acd630d4e (patch) | |
tree | daf8742c2ea61f15bd6f29b3699a13211a42d47c /lib/MGA | |
parent | e8570071b32b996d16738e0439f20bd2f24a617c (diff) | |
download | mgaadvisories-63160c8456f5fc561ce86a373d027d8acd630d4e.tar mgaadvisories-63160c8456f5fc561ce86a373d027d8acd630d4e.tar.gz mgaadvisories-63160c8456f5fc561ce86a373d027d8acd630d4e.tar.bz2 mgaadvisories-63160c8456f5fc561ce86a373d027d8acd630d4e.tar.xz mgaadvisories-63160c8456f5fc561ce86a373d027d8acd630d4e.zip |
Try to fix publish-all
An argument to output_pages() was missing. This command probably never
worked.
Diffstat (limited to 'lib/MGA')
-rw-r--r-- | lib/MGA/Advisories.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MGA/Advisories.pm b/lib/MGA/Advisories.pm index 4663eb6..1b86049 100644 --- a/lib/MGA/Advisories.pm +++ b/lib/MGA/Advisories.pm @@ -446,7 +446,7 @@ sub assign_ids { my %advdb; $advdb{advisories} = get_advisories_from_dir(); sort_advisories(\%advdb); - output_pages(); + output_pages(\%advdb); # We will have exited by now in the event of e.g. a Yaml or processing error |