1
0
mirror of https://github.com/kremalicious/dotfiles.git synced 2024-11-28 23:16:20 +01:00
dotfiles/bin/update.sh

41 lines
384 B
Bash
Executable File

#!/bin/bash
#
# OS X
# -------------
sudo softwareupdate -i -a
#
# Homebrew
# -------------
brew update
brew upgrade
brew cleanup
#
# npm
# -------------
# update npm itself
npm update 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