Skip to content

Commit

Permalink
[backend] rename "--filelists-ext" parameter for createrepo
Browse files Browse the repository at this point in the history
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 <aplanas@suse.com>
  • Loading branch information
aplanas committed Feb 23, 2023
1 parent 5ed4536 commit e20697a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/bs_publish
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit e20697a

Please sign in to comment.