mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-10 02:53:36 -05:00
5a175c2e27
Switch to the LTS .NET release channel to allow .NET 8 to be installed. STS restricts to .NET 7.
7 lines
221 B
Bash
Executable file
7 lines
221 B
Bash
Executable file
#!/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
|
|
./dotnet-install.sh --install-dir /usr/share/dotnet -channel LTS -version latest
|