mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 11:07:02 +00:00
8 lines
249 B
Bash
8 lines
249 B
Bash
#!/bin/bash -e -o pipefail
|
|
###########################################################################
|
|
# The script removes local Homebrew cache
|
|
#
|
|
###########################################################################
|
|
|
|
rm -rf "$(brew --cache)"
|