diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-12-24 13:08:03 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-01-22 13:02:39 +1300 |
commit | 55a0bed59f9c0dafb7af320f6ff6a63dd9db7b2a (patch) | |
tree | b255b260a94ae4cd83e2be90b6f66c0cec2af7ec /scripts/android | |
parent | 2153b95bf631bab005ad97729d278d67b5062754 (diff) | |
download | subsurface-55a0bed59f9c0dafb7af320f6ff6a63dd9db7b2a.tar.gz |
Travis: find the Android apk in the right spot
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/android')
-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 |