From 585b5a0bc90eab1784ee10948932aebb694d52ee Mon Sep 17 00:00:00 2001 From: Dion Date: Tue, 21 Jul 2026 16:40:41 -0700 Subject: [PATCH] Update install items for MacOS --- .github/dependabot.yml | 14 ++++++++++++++ macos/install_tools.sh | 43 +++++++++++++++++++++++++++++++++++++----- 2 files changed, 52 insertions(+), 5 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..c707557 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +# Dependabot configuration +# Docs: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + # Keep GitHub Actions used in .github/workflows up to date + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + github-actions: + patterns: + - "*" diff --git a/macos/install_tools.sh b/macos/install_tools.sh index 53279a6..fa053e6 100755 --- a/macos/install_tools.sh +++ b/macos/install_tools.sh @@ -79,12 +79,20 @@ else echo "Node.js is already installed." fi -# Install Gemini CLI -if ! command -v gemini &> /dev/null; then - echo "Gemini CLI not found. Installing..." - brew install gemini-cli +# Install Antigravity CLI +if ! command -v antigravity &> /dev/null; then + echo "Antigravity CLI not found. Installing..." + brew install --cask antigravity-cli else - echo "Gemini CLI is already installed." + echo "Antigravity CLI is already installed." +fi + +# Install Copilot CLI +if ! command -v copilot &> /dev/null; then + echo "Copilot CLI not found. Installing..." + brew install copilot-cli +else + echo "Copilot CLI is already installed." fi # Install Google Cloud CLI @@ -104,4 +112,29 @@ else echo "Terraform is already installed." fi +# Install Android CLI +if ! command -v android &> /dev/null; then + echo "Android CLI not found. Installing..." + brew tap android/tap + brew install android-cli +else + echo "Android CLI is already installed." +fi + +# Install Flutter +if ! command -v flutter &> /dev/null; then + echo "Flutter not found. Installing..." + brew install --cask flutter +else + echo "Flutter is already installed." +fi + +# Install Gradle +if ! command -v gradle &> /dev/null; then + echo "Gradle not found. Installing..." + brew install gradle +else + echo "Gradle is already installed." +fi + echo "All installations completed." \ No newline at end of file