From 5aac980c8b9573a5d6b8d1589c4b7a8314c33ace Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Wed, 22 May 2024 11:26:54 +0200 Subject: [PATCH] correctly map openSUSE Leap 15.5 chroot name --- theforeman.org/pipelines/lib/copr.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/theforeman.org/pipelines/lib/copr.groovy b/theforeman.org/pipelines/lib/copr.groovy index 590fd9e5..5bf38469 100644 --- a/theforeman.org/pipelines/lib/copr.groovy +++ b/theforeman.org/pipelines/lib/copr.groovy @@ -46,6 +46,8 @@ def convert_to_dist(chroot) { return 'el8' } else if(chroot == 'rhel-7-x86_64') { return 'el7' + } else if(chroot == 'opensuse-leap-15.5-x86_64') { + return 'leap155' } else { return null }