Files
llgo/.github/workflows/cleanup.sh
2024-11-26 11:52:35 +08:00

7 lines
106 B
Bash

#!/bin/bash
set -e
if pkg=$(brew list | grep -E "pkg-config"); then
brew uninstall "$pkg" || true
fi