Created
February 29, 2016 15:12
-
-
Save kmorin/781cece5951f936aee13 to your computer and use it in GitHub Desktop.
update script for command-line tools [osx]
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 'Updating Homebrew...' | |
brew update | |
echo 'Updating RVM...' | |
rvm get stable | |
echo 'Updating NVM...' | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash | |
echo 'Upgrading git...' | |
brew upgrade | |
#echo 'Updating npm...' | |
#npm install -g npm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment