diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-12-24 13:08:03 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-12-30 11:20:34 -0800 |
commit | ed32331640f61c68a494d83906b087216f37ae98 (patch) | |
tree | f786fdae7354b7fc329c8e21edca626c0e0cf351 /scripts | |
parent | 1665da04a495b2f4ab124be62800573350ba3de8 (diff) | |
download | subsurface-ed32331640f61c68a494d83906b087216f37ae98.tar.gz |
Travis: find the Android apk in the right spot
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/android/after_success.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/android/after_success.sh b/scripts/android/after_success.sh index 622b5e20e..36219b562 100644 --- a/scripts/android/after_success.sh +++ b/scripts/android/after_success.sh @@ -8,8 +8,8 @@ fi source ${TRAVIS_BUILD_DIR}/scripts/release-message.sh echo "Submitting the folloing apk for continuous build release:" -ls -lh $TRAVIS_BUILD_DIR/apk/*.apk +ls -lh /android/subsurface-mobile-build-arm*/build/outputs/apk/*.apk # get and run the upload script wget -c https://raw.githubusercontent.com/dirkhh/uploadtool/master/upload.sh -bash ./upload.sh $TRAVIS_BUILD_DIR/../subsurface-mobile-build-arm/build/outputs/apk/*.apk +bash ./upload.sh /android/subsurface-mobile-build-arm*/build/outputs/apk/*.apk |