Skip to content

Commit 122a8fa

Browse files
committed
Fix NDK installation
1 parent 63138bb commit 122a8fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scripts/install-and-build-with-sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ install_android_sdk() {
578578
if [[ ! -d "${ANDROID_NDK_HOME:-}" ]]; then
579579
# download and install the Android NDK
580580
local android_ndk_version=r27d
581-
curl --retry=3 -fsSLO https://dl.google.com/android/repository/android-ndk-"${android_ndk_version}"-"$(uname -s)".zip
581+
curl --retry 3 -fsSLO https://dl.google.com/android/repository/android-ndk-"${android_ndk_version}"-"$(uname -s)".zip
582582
unzip -q android-ndk-"${android_ndk_version}"-*.zip
583583
export ANDROID_NDK_HOME="${PWD}"/android-ndk-"${android_ndk_version}"
584584
fi

0 commit comments

Comments
 (0)