fix: add explicit brew tap before installing gga

This commit is contained in:
Alan Buscaglia
2025-12-16 13:46:55 +01:00
parent 4931564648
commit eb1fc2b269
+2 -1
View File
@@ -19,7 +19,8 @@ fi
if ! command -v gga &> /dev/null; then
echo -e "${BLUE}📦 Installing Gentleman Guardian Angel (gga)...${NC}"
if command -v brew &> /dev/null; then
brew install gentleman-programming/tap/gga
brew tap gentleman-programming/tap 2>/dev/null || true
brew install gga
else
# Fallback: install from source for Linux/CI environments
GGA_TMP_DIR=$(mktemp -d)