This commit is contained in:
2025-11-15 10:00:27 -07:00
parent 806b4ffea9
commit 3467a82edb
+2 -2
View File
@@ -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