mirror of
https://github.com/eth-act/ere.git
synced 2026-02-19 11:54:42 -05:00
13 lines
277 B
Bash
Executable File
13 lines
277 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e -o pipefail
|
|
|
|
df -h /
|
|
|
|
sudo rm -rf /usr/share/dotnet # remove dotnet
|
|
sudo rm -rf /usr/local/lib/android # remove android
|
|
sudo rm -rf /opt/ghc /usr/local/.ghcup # remove haskell
|
|
sudo rm -rf /opt/hostedtoolcache # remove codeql
|
|
|
|
df -h /
|