Skip to content

Instantly share code, notes, and snippets.

@josephmidura
Last active March 19, 2025 21:11
Show Gist options
  • Save josephmidura/807770766aeb37b9cc3897e26f870210 to your computer and use it in GitHub Desktop.
Save josephmidura/807770766aeb37b9cc3897e26f870210 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Update homebrew
CYAN=$(tput setaf 6)
RESET=$(tput sgr0)
echo "${CYAN}Updating homebrew and local base of available packages and versions...${RESET}"
brew update
echo "${CYAN}Upgrading outdated homebrew packages...${RESET}"
brew upgrade
echo "${CYAN}Cleaning cache of unfinished downloads...${RESET}"
brew cleanup
echo "${CYAN}Checking for issues...${RESET}"
brew doctor
@josephmidura
Copy link
Author

josephmidura commented May 29, 2024

I'm glad it worked and it sounds like you're on the right track with calling scripts from directories in your $PATH.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment