Created
March 15, 2024 06:56
-
-
Save ElianCodes/8a0d2e0ca29e0faadfa4a2b9bc6b30e6 to your computer and use it in GitHub Desktop.
My update script
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
echo 'updating brew packages' | |
brew update | |
echo 'upgrading brew packages' | |
brew upgrade | |
echo 'updating gcloud' | |
gcloud components update | |
echo 'update NPM packages' | |
npm update -g | |
echo 'update PNPM' | |
pnpm add -g pnpm@latest | |
echo 'update composer packages' | |
composer global update | |
echo 'updating Bun' | |
bun upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment