diff --git a/ct/rdtclient.sh b/ct/rdtclient.sh index abb3cb2a6..bec3bc8ad 100755 --- a/ct/rdtclient.sh +++ b/ct/rdtclient.sh @@ -39,9 +39,9 @@ function update_script() { fetch_and_deploy_gh_release "rdt-client" "rogerfar/rdt-client" "prebuild" "latest" "/opt/rdtc" "RealDebridClient.zip" cp -R /opt/rdtc-backup/appsettings.json /opt/rdtc/ - if dpkg-query -W dotnet-sdk-8.0 >/dev/null 2>&1; then - $STD apt remove --purge -y dotnet-sdk-8.0 - ensure_dependencies aspnetcore-runtime-9.0 + if dpkg-query -W aspnetcore-runtime-9.0 >/dev/null 2>&1; then + $STD apt remove --purge -y aspnetcore-runtime-9.0 + ensure_dependencies aspnetcore-runtime-10.0 fi rm -rf /opt/rdtc-backup diff --git a/install/rdtclient-install.sh b/install/rdtclient-install.sh index b0436cb1f..1f89886e7 100644 --- a/install/rdtclient-install.sh +++ b/install/rdtclient-install.sh @@ -19,7 +19,7 @@ setup_deb822_repo \ "https://packages.microsoft.com/keys/microsoft-2025.asc" \ "https://packages.microsoft.com/debian/13/prod/" \ "trixie" -$STD apt install -y aspnetcore-runtime-9.0 +$STD apt install -y aspnetcore-runtime-10.0 msg_ok "Installed Dependencies" fetch_and_deploy_gh_release "rdt-client" "rogerfar/rdt-client" "prebuild" "latest" "/opt/rdtc" "RealDebridClient.zip"