Use correct path to look for pom.xml

This commit is contained in:
Matthieu Gautier 2019-08-22 11:02:32 +02:00
parent ecb3befd23
commit 6bebdf89fc
1 changed files with 2 additions and 2 deletions

View File

@ -486,8 +486,8 @@ elif PLATFORM == 'android' and 'kiwix-lib-app' in TARGETS:
basename = "kiwixlib-{}".format(postfix) basename = "kiwixlib-{}".format(postfix)
output_release_dir = HOME/'BUILD_android'/'kiwix-lib-app'/'kiwixLibAndroid'/'build'/'outputs' output_release_dir = HOME/'BUILD_android'/'kiwix-lib-app'/'kiwixLibAndroid'/'build'
shutil.copy(str(output_release_dir/'aar'/'kiwixLibAndroid-release.aar'), shutil.copy(str(output_release_dir/'outputs'/'aar'/'kiwixLibAndroid-release.aar'),
str(BINTRAY_ARCHIVES_DIR/(basename+'.aar'))) str(BINTRAY_ARCHIVES_DIR/(basename+'.aar')))
shutil.copy(str(output_release_dir/'pom.xml'), shutil.copy(str(output_release_dir/'pom.xml'),
str(BINTRAY_ARCHIVES_DIR/(basename+'.pom'))) str(BINTRAY_ARCHIVES_DIR/(basename+'.pom')))