Skip to content

Instantly share code, notes, and snippets.

@piotrkulpinski
Last active November 2, 2023 09:23
Show Gist options
  • Save piotrkulpinski/ad7b47ef55b3861159cc320f5a42c378 to your computer and use it in GitHub Desktop.
Save piotrkulpinski/ad7b47ef55b3861159cc320f5a42c378 to your computer and use it in GitHub Desktop.
#!/bin/bash
# ------------------------------------------------------------------------------
echo "\033[4;33mUpdating Oh My Zsh\033[0m"
omz update --unattended
# ------------------------------------------------------------------------------
echo "\033[4;33mUpdating global Homebrew packages\033[0m"
brew upgrade --greedy
brew cleanup
# ------------------------------------------------------------------------------
echo "\033[4;33mUpdating Bun\033[0m"
brew upgrade bun
# ------------------------------------------------------------------------------
echo "\033[4;33mUpdating global Composer packages\033[0m"
composer global update
composer global clear-cache
# ------------------------------------------------------------------------------
# echo "\033[4;33mUpdating global Conda packages\033[0m"
# conda update -n base -c defaults conda -y
# conda clean -a -y
# ------------------------------------------------------------------------------
echo "\033[4;33mUpdating global Node packages\033[0m"
bun update -g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment