From: Michael Tremer Date: Thu, 9 Mar 2023 18:51:06 +0000 (+0000) Subject: repos: Use the correct absolute path to repositories X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e9e0c7a38ee7db3391bc43054430319ef36a1e5;p=pbs.git repos: Use the correct absolute path to repositories Signed-off-by: Michael Tremer --- diff --git a/src/buildservice/repository.py b/src/buildservice/repository.py index 1afab15a..7454917f 100644 --- a/src/buildservice/repository.py +++ b/src/buildservice/repository.py @@ -297,7 +297,7 @@ class Repository(base.DataObject): "description" : "%s - %s" % (self.distro.name, self.name), # Base URL - "baseurl" : self.path if local else self.download_url, + "baseurl" : self.local_path() if local else self.download_url, # Key "key" : self.key.public_key or "",