Skip to content

Commit 9604eaf

Browse files
committed
fix(dev/release): update how we find .NET download URL
Closes apache#3975.
1 parent 0b7f959 commit 9604eaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/release/verify-release-candidate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ install_dotnet() {
273273
local dotnet_download_thank_you_url=https://dotnet.microsoft.com/download/thank-you/dotnet-sdk-${dotnet_version}-${dotnet_platform}-x64-binaries
274274
show_info "Getting .NET download URL from ${dotnet_download_thank_you_url}"
275275
local dotnet_download_url=$(curl -sL ${dotnet_download_thank_you_url} | \
276-
grep 'recordManualDownload' | \
276+
grep 'directLink' | \
277277
grep -E -o 'https://builds.dotnet[^"]+')
278278
if [ -z "${dotnet_download_url}" ]; then
279279
echo "Failed to get .NET download URL from ${dotnet_download_thank_you_url}"

0 commit comments

Comments
 (0)