From 4d838cf4de3522b9ee42e761860d388c9fdbad33 Mon Sep 17 00:00:00 2001 From: Veloman Yunkan Date: Tue, 17 Dec 2024 11:43:31 +0400 Subject: [PATCH] Fixed a bug in kiwix-desktop's source publishing step The bug was there since 2018. It's strange that it didn't cause problems with previous releases. The most plausible explanation is that this is the first time when the sources of kiwix-desktop are being published via this procedure. --- kiwixbuild/dependencies/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwixbuild/dependencies/base.py b/kiwixbuild/dependencies/base.py index 45d0422..29f2081 100644 --- a/kiwixbuild/dependencies/base.py +++ b/kiwixbuild/dependencies/base.py @@ -524,8 +524,8 @@ class QMakeBuilder(MakeBuilder): *neutralEnv("git_command"), "archive", "-o", - f"{self.build_path}/{self.target_full_name()}.tar.gz", - f"--prefix={self.target_full_name()}/", + f"{self.build_path}/{self.target.full_name()}.tar.gz", + f"--prefix={self.target.full_name()}/", "HEAD", ] run_command(command, self.source_path, context)