summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xTestScripts/install-android.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/TestScripts/install-android.sh b/TestScripts/install-android.sh
index 49ca3300..da71ff1e 100755
--- a/TestScripts/install-android.sh
+++ b/TestScripts/install-android.sh
@@ -2,8 +2,16 @@
set -e
# for local debugging
-if [[ -f setenv-travis.sh ]]; then
- source setenv-travis.sh
+if [[ -f ./setenv-travis.sh ]]; then
+ echo "Setting variables in setenv-travis.sh"
+ source ./setenv-travis.sh
+elif [[ -f ./TestScripts/setenv-travis.sh ]]; then
+ echo "Setting variables in TestScripts/setenv-travis.sh"
+ source ./TestScripts/setenv-travis.sh
+fi
+
+if [[ -z "$ANDROID_SDK_ROOT" ]] || [[ -z "$ANDROID_NDK_ROOT" ]]; then
+ echo "ANDROID_SDK_ROOT or ANDROID_NDK_ROOT is not set"
fi
# install android deps