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