From 6d47055c896e040fdf010b2687e784994b2dbb9c Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 20 Apr 2020 17:44:11 +0200 Subject: [PATCH] Add the zstd patches to the flathub git repository. --- travis/compile_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/compile_all.py b/travis/compile_all.py index 0ed04b9..2414b69 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -279,7 +279,7 @@ def update_flathub_git(): call(command, cwd=GIT_EXPORT_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'): + for dep in ('libaria2', 'mustache', 'pugixml', 'xapian', 'zstd'): for f in patch_dir.glob('{}_*.patch'.format(dep)): shutil.copy(str(f), str(GIT_REPO_DIR/'patches')) command = ['git', 'add', '-A', '.']