From 536748500bb0d878a358a73e4d9ce61036a0a179 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 9 Dec 2022 10:53:11 +0100 Subject: [PATCH] Remove uneeded patches for flatpak Patches are uneeded for all arch. But we were trying to copy them on flatpak. --- .github/scripts/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/common.py b/.github/scripts/common.py index 2c4b159..aaebee4 100644 --- a/.github/scripts/common.py +++ b/.github/scripts/common.py @@ -408,7 +408,7 @@ def update_flathub_git(): call(command, cwd=TMP_DIR) shutil.copy(str(BASE_DIR / "org.kiwix.desktop.json"), str(git_repo_dir)) patch_dir = KBUILD_SOURCE_DIR / "kiwixbuild" / "patches" - for dep in ("libaria2", "mustache", "pugixml", "xapian", "zstd"): + for dep in ["pugixml"]: for f in patch_dir.glob("{}_*.patch".format(dep)): shutil.copy(str(f), str(git_repo_dir / "patches")) command = ["git", "add", "-A", "."]