Skip to content

Commit

Permalink
properly set dist when inspecting copr info
Browse files Browse the repository at this point in the history
otherwise repoclosure runs with "dist: null"
  • Loading branch information
evgeni committed Dec 15, 2023
1 parent 9ce7bbc commit 3d48059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theforeman.org/pipelines/lib/copr.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def copr_repos(package_name) {
def module_args = build_info['invocation']['module_args']
repos.add([
url: "https://download.copr.fedorainfracloud.org/results/${module_args['user']}/${module_args['project']}/${module_args['chroot']}",
chroot: convert_to_dist(build_info['chroot'])
dist: convert_to_dist(build_info['chroot'])
])
}
}
Expand Down

0 comments on commit 3d48059

Please sign in to comment.