From: Michael Tremer Date: Thu, 30 Jan 2025 22:54:47 +0000 (+0000) Subject: pakfire: Include local repo name in path X-Git-Tag: 0.9.30~227 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ac41bbaa6b76a9e83312ab1ff8a0737d9251bcb4;p=pakfire.git pakfire: Include local repo name in path Signed-off-by: Michael Tremer --- diff --git a/src/pakfire/pakfire.c b/src/pakfire/pakfire.c index 453b7abe..58135e96 100644 --- a/src/pakfire/pakfire.c +++ b/src/pakfire/pakfire.c @@ -569,7 +569,7 @@ static int pakfire_setup_local_repo(struct pakfire* self) { // Make the repository path r = pakfire_string_format(path, - "~/.local/share/%s/%s/%s", PACKAGE_NAME, distro_id, version_id); + "~/.local/share/%s/local/%s/%s", PACKAGE_NAME, distro_id, version_id); if (r < 0) { ERROR(self->ctx, "Could not compose the local repository path: %s\n", strerror(-r)); goto ERROR;