mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
28 lines
460 B
Bash
Executable file
28 lines
460 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
paths=(
|
|
/home/runner/.rustup
|
|
/usr/share/dotnet
|
|
/usr/share/swift
|
|
/usr/share/miniconda
|
|
/usr/share/az*
|
|
/usr/lib/jvm
|
|
/usr/lib/llvm-*
|
|
/usr/lib/google-cloud-sdk
|
|
/usr/lib/dotnet
|
|
/usr/local/.ghcup
|
|
/usr/local/share/chromium
|
|
/usr/local/share/powershell
|
|
/usr/local/lib/android
|
|
/usr/local/julia1.11.5
|
|
/opt/ghc
|
|
/opt/az
|
|
/opt/pipx
|
|
/opt/microsoft
|
|
/opt/hostedtoolcache
|
|
/etc/skel/.rustup
|
|
)
|
|
|
|
sudo rm -rf "${paths[@]}"
|