From 0c05552791ba455c01641a7c21ba6b3ffa81994f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joa=CC=83o=20Cunha?= Date: Thu, 6 Jul 2023 22:59:15 +0100 Subject: [PATCH] changed how .NET is installed, back to debian 11 package --- install/rdtclient-install.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/install/rdtclient-install.sh b/install/rdtclient-install.sh index ba743bd6..5d9cc1a8 100644 --- a/install/rdtclient-install.sh +++ b/install/rdtclient-install.sh @@ -21,8 +21,11 @@ $STD apt-get install -y unzip msg_ok "Installed Dependencies" msg_info "Installing ASP.NET Core Runtime" -$STD bash -c "$(wget --no-cache -qLO - https://dot.net/v1/dotnet-install.sh)" -ln -s /root/.dotnet/dotnet /usr/bin/dotnet +wget -q https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb +$STD dpkg -i packages-microsoft-prod.deb +rm packages-microsoft-prod.deb +$STD apt-get update +$STD apt-get install -y dotnet-sdk-6.0 msg_ok "Installed ASP.NET Core Runtime" msg_info "Installing rdtclient" wget -q https://github.com/rogerfar/rdt-client/releases/latest/download/RealDebridClient.zip