2022-12-29 12:56:54 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
curl --retry 5 --retry-delay 5 -sLO https://dot.net/v1/dotnet-install.sh
|
|
|
|
chmod +x dotnet-install.sh
|
2023-12-27 04:26:05 -05:00
|
|
|
./dotnet-install.sh --install-dir /usr/share/dotnet -channel LTS -version latest
|