[dotnet] Use a newer script to install .NET 10.

The currently stable one doesn't know that .NET 10 supports arm64, and
installs the x64 version of .NET instead.
This commit is contained in:
Rolf Bjarne Kvinge 2024-10-11 11:28:18 +02:00
Родитель 1e0bed1aff
Коммит 76440846ed
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -55,6 +55,10 @@ print-dotnet-pkg-urls: dotnet-install.sh
$(Q) if ! test -f $@-found-it.stamp; then echo "No working urls were found."; exit 1; fi $(Q) if ! test -f $@-found-it.stamp; then echo "No working urls were found."; exit 1; fi
$(Q) rm -f $@-found-it.stamp $(Q) rm -f $@-found-it.stamp
# We need https://github.com/dotnet/install-scripts/pull/526, which hasn't been released yet.
# Revert to using https://dot.net/v1/dotnet-install.sh whenever https://dot.net/v1/dotnet-install.sh has been updated.
DOTNET_DOWNLOAD_URL?=https://raw.githubusercontent.com/dotnet/install-scripts/87151ae8d2153247f4566208e0df23169d737e92/src/dotnet-install.sh
DOTNET_DOWNLOAD_URL?=https://dot.net/v1/dotnet-install.sh DOTNET_DOWNLOAD_URL?=https://dot.net/v1/dotnet-install.sh
dotnet-install.sh: Makefile dotnet-install.sh: Makefile