mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 01:05:54 -05:00
1ca3ebccd6
- Remove build-time dependencies - Remove cached NPM packages - Remove cached PyPi packages - Remove dependency descriptors. These still count against the total space, although it's a few KBs - Install rust-clippy and rust-fmt using the OS package manager instead of maintaining our own installation script - Add tests for build time dependencies that are not supposed to be installed
8 lines
249 B
Bash
Executable file
8 lines
249 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
|
|
rm -rfv ./dotnet-install.sh
|