Browse Source

setup-android-sdk.sh: Fix mac ndk download

android-5
Fredrik Fornwall 9 years ago
parent
commit
37c88ee367
  1. 2
      scripts/setup-android-sdk.sh

2
scripts/setup-android-sdk.sh

@ -22,7 +22,7 @@ if [ ! -d $NDK ]; then
mkdir -p $NDK
cd $NDK/..
rm -Rf `basename $NDK`
curl --fail --retry 3 -o ndk.zip http://dl.google.com/android/repository/android-ndk-r12-linux-x86_64.zip
curl --fail --retry 3 -o ndk.zip http://dl.google.com/android/repository/android-ndk-r12-`uname`-x86_64.zip
rm -Rf android-ndk-r12
unzip -q ndk.zip

Loading…
Cancel
Save