Created
March 16, 2016 12:45
-
-
Save FredericJacobs/f07208092b8d12e722fd to your computer and use it in GitHub Desktop.
Script I run daily to update dependencies.
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 "๐ Updating System (root)" | |
sudo softwareupdate --install --all | |
echo "๐ Updating Gems"; | |
gem update; | |
echo "๐ Updating Brew"; | |
brew update; | |
brew upgrade; | |
echo "๐ Updating Node"; | |
npm update; | |
npm upgrade; | |
echo "๐ Updating Rust"; | |
multirust update; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment