Created
February 14, 2023 12:54
-
-
Save piotrkulpinski/04b2899c4d0fc1966a8ef2808ce39890 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/sh | |
echo "\033[4;33mUpdating Oh My Zsh…\033[0m" | |
omz update | |
echo "\033[4;33mUpdating global Homebrew packages…\033[0m" | |
brew upgrade --greedy | |
brew upgrade --cask --greedy | |
brew cleanup | |
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 | |
echo "\033[4;33mUpdating global Node packages…\033[0m" | |
npm update -g | |
npm cache verify |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment