From 546ae2faaa88d11a26f650f6bbeee1627283f6dd Mon Sep 17 00:00:00 2001 From: Michael Schroeder Date: Wed, 29 Nov 2023 14:53:08 +0100 Subject: [PATCH] ProductCompose.pm: Fix _obsrepositories project name --- Build/ProductCompose.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build/ProductCompose.pm b/Build/ProductCompose.pm index f2140e734..2544ecb19 100644 --- a/Build/ProductCompose.pm +++ b/Build/ProductCompose.pm @@ -120,7 +120,7 @@ sub parse { $ret->{deps} = \@merged; # We have currently no option to configure own path list for the product on purpose - $ret->{path} = [ { project => '_obsrepositories/', repository => '' } ]; + $ret->{path} = [ { project => '_obsrepositories', repository => '' } ]; return $ret; }