From c738edc92f0d3f714220d687f0c75534898ab5f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 23 Feb 2024 14:47:32 +0100 Subject: [PATCH] [backend] fix slepool maping for product composer naming slepool stripped away the dot from .license directories when build with product composer (since we have no more -Media strings behind build number. --- 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 c14f6366497..9973b37f6ef 100755 --- a/src/backend/bs_publish +++ b/src/backend/bs_publish @@ -1888,7 +1888,7 @@ sub mapslepool { my $p = $bin; if ($name eq 'nobuildid') { $p = "repo/$bin"; - $p =~ s/-Build[\d\.]+//; + $p =~ s/-Build[\d\.]*\d//; } elsif ($bin =~ /.*-Media1?(\.license|)$/) { $p = "$name$1"; } elsif ($bin =~ /-Media3$/ || $bin =~ /-Debug$/) {