From c6f1736b3184b404d90618a1b6a0483860744ede Mon Sep 17 00:00:00 2001 From: Andy Wang Date: Thu, 31 Mar 2022 16:31:04 +0100 Subject: [PATCH] Fix NDK download link (GOOGLE PLEASE STOP POINTLESSLY MESSING AROUND WITH YOUR APIS) --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 50ac3d1..7e3d876 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -36,7 +36,7 @@ steps: displayName: 'Set up the Go workspace' - script: | - wget "https://dl.google.com/android/repository/android-ndk-$(NDKVERSION)-linux-x86_64.zip" --output-document "$(Agent.BuildDirectory)/ndk-$(NDKVERSION).zip" + wget "https://dl.google.com/android/repository/android-ndk-$(NDKVERSION)-linux.zip" --output-document "$(Agent.BuildDirectory)/ndk-$(NDKVERSION).zip" unzip "$(Agent.BuildDirectory)/ndk-$(NDKVERSION).zip" -d '$(Agent.BuildDirectory)' displayName: 'Download NDK'