From 3467a82edb5cab94598977b9c5fb2ae06eda24be Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Sat, 15 Nov 2025 10:00:27 -0700 Subject: [PATCH] cleanupa --- customscripts/install_script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/customscripts/install_script.sh b/customscripts/install_script.sh index d30e06e..a9b26f5 100644 --- a/customscripts/install_script.sh +++ b/customscripts/install_script.sh @@ -51,7 +51,7 @@ if [ ! -z "$1" ]; then echo -e "\ndotnet not found, installing\n" wget https://dot.net/v1/dotnet-install.sh -O /tmp/dotnet-install.sh chmod +x /tmp/dotnet-install.sh - /tmp/dotnet-install.sh + /tmp/dotnet-install.sh --channel LTS echo -e "## dotnet\nPATH=\$PATH:$userhome/.dotnet:$userhome/.dotnet/tools" >> $rcfile source $rcfile else @@ -65,7 +65,7 @@ if [ ! -z "$1" ]; then ### haveibeenpwned-downloader if [ ! $(which haveibeenpwned-downloader) ]; then echo -e "\nhaveibeenpwned-downloader not found, installing with dotnet\n" - dotnet tool install --create-manifest-if-needed --global haveibeenpwned-downloader + dotnet tool install --global haveibeenpwned-downloader else echo -e "\nhaveibeenpwned-downloader installed, skipping install\n" fi