From afe3865921cd61d79c9e026864ec13e975643cef Mon Sep 17 00:00:00 2001 From: deal Date: Thu, 30 Dec 2021 20:09:25 +0800 Subject: [PATCH] Update before-install.sh --- tools/unix-ci/before-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/unix-ci/before-install.sh b/tools/unix-ci/before-install.sh index 35f1b4063a..7145a9de42 100755 --- a/tools/unix-ci/before-install.sh +++ b/tools/unix-ci/before-install.sh @@ -26,9 +26,9 @@ function install_android_sdk() # full cmd: echo yes|cmdline-tools/bin/sdkmanager --verbose --sdk_root=sdk platform-tools "cmdline-tools;latest" "platforms;android-28" "build-tools;29.0.2" "ndk;19.2.5345600" if [ "$BUILD_TARGET" == "android" ]\ || [ "$BUILD_TARGET" == "android_lua" ] ; then - python $ADXE_ROOT/tools/appveyor-scripts/setup_android.py + python $ADXE_ROOT/tools/unix-ci/setup_android.py else - python $ADXE_ROOT/tools/appveyor-scripts/setup_android.py --ndk_only + python $ADXE_ROOT/tools/unix-ci/setup_android.py --ndk_only fi }