From 274aec60d2190076bad751fedcc91b3ceadf8205 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 2 Jul 2021 11:19:18 +0200 Subject: [PATCH] Copy the right directory on libkiwix android. The sub-directory `android-kiwix-lib-publisher` has not been renamed. We plan to move this code in another repository anyway. It is better for now to use the existing name instead of change the directory. --- kiwixbuild/dependencies/libkiwix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwixbuild/dependencies/libkiwix.py b/kiwixbuild/dependencies/libkiwix.py index 21a9b31..e441391 100644 --- a/kiwixbuild/dependencies/libkiwix.py +++ b/kiwixbuild/dependencies/libkiwix.py @@ -64,7 +64,7 @@ class LibkiwixApp(Dependency): except FileNotFoundError: pass if not os.path.exists(self.build_path): - shutil.copytree(pj(self.source_path, 'android-libkiwix-publisher'), self.build_path, symlinks=True) + shutil.copytree(pj(self.source_path, 'android-kiwix-lib-publisher'), self.build_path, symlinks=True) for arch in option('android_arch'): try: kiwix_builder = get_target_step('libkiwix', 'android_{}'.format(arch))