mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
8 lines
221 B
Bash
8 lines
221 B
Bash
|
#!/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 STS -version latest
|