From 6f291b1c86441b3f33a05cf153f67a53f4557471 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 20 Aug 2018 11:18:01 +0200 Subject: [PATCH] Set the default platform to `android` for `kiwix-android-custom` project. Fix #206 --- kiwixbuild/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwixbuild/__init__.py b/kiwixbuild/__init__.py index 718d3f9..a9815db 100644 --- a/kiwixbuild/__init__.py +++ b/kiwixbuild/__init__.py @@ -73,7 +73,7 @@ def parse_args(): options.ios_arch = ['armv7', 'arm64', 'i386', 'x86_64'] if not options.target_platform: - if options.target == 'kiwix-android': + if options.target in ('kiwix-android', 'kiwix-android-custom'): options.target_platform = 'android' else: options.target_platform = 'native_dyn'