From e20697ab30d3684fe19f4232acbd21b01ac5a80c Mon Sep 17 00:00:00 2001 From: Alberto Planas Date: Thu, 23 Feb 2023 17:21:09 +0100 Subject: [PATCH] [backend] rename "--filelists-ext" parameter for createrepo createrepo_c renamed the --filelists_ext to --filelists-ext before the release, and this patch follow the rename. See #12358 for more information. Signed-off-by: Alberto Planas --- src/backend/bs_publish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/bs_publish b/src/backend/bs_publish index 9e7ce47bf61..dfb8c71c4b4 100755 --- a/src/backend/bs_publish +++ b/src/backend/bs_publish @@ -617,7 +617,7 @@ sub createrepo_rpmmd { push @createrepoargs, '--content', 'debug' if $data->{'dbgsplit'}; push @createrepoargs, '--content', 'update' if ($repoinfo->{'projectkind'} || '') eq 'maintenance_incident'; push @createrepoargs, '--content', 'update' if ($repoinfo->{'projectkind'} || '') eq 'maintenance_release'; - push @createrepoargs, '--filelists_ext' if $options{'filelists_ext'}; + push @createrepoargs, '--filelists-ext' if ($options{'filelists-ext'} || $options{'filelists_ext'}); my @legacyargs; if ($options{'sha512'}) { push @legacyargs, '--unique-md-filenames', '--checksum=sha512';