mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00
16 lines
263 B
Bash
Executable File
16 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Taken from
|
|
# https://github.com/actions/runner-images/issues/2840#issuecomment-790492173
|
|
#
|
|
|
|
set -ux
|
|
|
|
df -h
|
|
sudo rm -rf /usr/share/dotnet
|
|
sudo rm -rf /opt/ghc
|
|
sudo rm -rf "/usr/local/share/boost"
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
df -h
|