mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
17 lines
292 B
Bash
17 lines
292 B
Bash
#!/bin/bash
|
|
|
|
paths=(
|
|
"/home/runner/.rustup"
|
|
"/usr/share/dotnet"
|
|
"/usr/share/swift"
|
|
"/usr/lib/jvm"
|
|
"/usr/lib/llvm-18"
|
|
"/usr/local/.ghcup"
|
|
"/usr/local/share/chromium"
|
|
"/usr/local/lib/android"
|
|
"/opt/ghc"
|
|
"/opt/microsoft"
|
|
"/opt/hostedtoolcache"
|
|
)
|
|
|
|
sudo rm -rf "${paths[@]}"
|