From cd97764c0720b5c4e579af761da92af7f5b30143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Tue, 28 Nov 2023 14:22:58 +0100 Subject: [PATCH] productcompose: return default path --- Build/ProductCompose.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build/ProductCompose.pm b/Build/ProductCompose.pm index b1af970ca..f2140e734 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} = '_obsrepositories/'; + $ret->{path} = [ { project => '_obsrepositories/', repository => '' } ]; return $ret; }