From 6bebdf89fc0e6c1e40f4b994f297d788c658c2da Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 22 Aug 2019 11:02:32 +0200 Subject: [PATCH] Use correct path to look for pom.xml --- travis/compile_all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/travis/compile_all.py b/travis/compile_all.py index bc9eb9e..a629a28 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -486,8 +486,8 @@ elif PLATFORM == 'android' and 'kiwix-lib-app' in TARGETS: basename = "kiwixlib-{}".format(postfix) - output_release_dir = HOME/'BUILD_android'/'kiwix-lib-app'/'kiwixLibAndroid'/'build'/'outputs' - shutil.copy(str(output_release_dir/'aar'/'kiwixLibAndroid-release.aar'), + output_release_dir = HOME/'BUILD_android'/'kiwix-lib-app'/'kiwixLibAndroid'/'build' + shutil.copy(str(output_release_dir/'outputs'/'aar'/'kiwixLibAndroid-release.aar'), str(BINTRAY_ARCHIVES_DIR/(basename+'.aar'))) shutil.copy(str(output_release_dir/'pom.xml'), str(BINTRAY_ARCHIVES_DIR/(basename+'.pom')))