Last active
November 2, 2023 09:23
-
-
Save piotrkulpinski/ad7b47ef55b3861159cc320f5a42c378 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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