1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2025-01-07 04:04:15 +01:00
dotfiles/bin/update.sh

41 lines
386 B
Bash
Executable File

#!/bin/bash
#
# OS X
# -------------
#sudo softwareupdate -i -a
#
# Homebrew
# -------------
brew update
brew upgrade
brew cleanup
#
# npm
# -------------
# update npm itself
npm install npm -g
# update all global packages
#npm update -g
sh npm-upgrade.sh
#
# Ruby
# -------------
rvm get branch master
rvm cleanup all
#
# Gems
# -------------
gem update --system
gem update