dotfiles/bin/update-everything.sh

80 lines
1.0 KiB
Bash
Raw Normal View History

2015-07-26 20:27:32 +02:00
#!/usr/bin/env bash
2014-11-03 17:40:13 +01:00
#
2016-11-03 22:23:20 +01:00
# macOS
2014-11-03 17:40:13 +01:00
# -------------
2017-08-14 15:34:52 +02:00
echo ""
2017-10-16 17:08:52 +02:00
echo "$(tput setaf 3) Update macOS Apps"
2017-06-12 01:21:12 +02:00
echo "------------------------------$(tput sgr0)"
2016-11-03 22:23:20 +01:00
2014-11-03 17:40:13 +01:00
#sudo softwareupdate -i -a
2016-11-03 22:23:20 +01:00
mas upgrade
2014-11-03 17:40:13 +01:00
#
# Homebrew
# -------------
2017-08-14 15:34:52 +02:00
echo ""
echo ""
2017-10-16 17:08:52 +02:00
echo "$(tput setaf 3) Update Homebrew"
2017-06-12 01:21:12 +02:00
echo "------------------------------$(tput sgr0)"
2014-11-03 17:40:13 +01:00
brew update
2016-10-14 21:59:34 +02:00
brew upgrade
2014-11-03 17:40:13 +01:00
brew cleanup
#
# npm
# -------------
2017-08-14 15:34:52 +02:00
echo ""
echo ""
2017-10-16 17:08:52 +02:00
echo "$(tput setaf 3) Update npm"
2017-06-12 01:21:12 +02:00
echo "------------------------------$(tput sgr0)"
2014-11-03 17:40:13 +01:00
# update npm itself
npm install npm -g
# update all global packages
2015-03-28 02:42:45 +01:00
npm update -g
2014-11-03 17:40:13 +01:00
2017-06-18 03:05:06 +02:00
2014-11-03 17:40:13 +01:00
#
# Ruby
# -------------
2017-08-14 15:34:52 +02:00
echo ""
echo ""
2017-10-16 17:08:52 +02:00
echo "$(tput setaf 3) Update rvm"
2017-06-12 01:21:12 +02:00
echo "------------------------------$(tput sgr0)"
2014-11-03 17:40:13 +01:00
# update rvm itself
2016-11-15 22:25:44 +01:00
rvm get stable
rvm reload
2015-01-13 16:37:25 +01:00
# update all gemsets
rvm gemset update
# cleanup
2014-11-03 17:40:13 +01:00
rvm cleanup all
2016-11-15 22:25:44 +01:00
#
# GPG
# -------------
2017-08-14 15:34:52 +02:00
echo ""
echo ""
2017-10-16 17:08:52 +02:00
echo "$(tput setaf 3) Refresh GPG keys"
2017-06-12 01:21:12 +02:00
echo "------------------------------$(tput sgr0)"
2016-11-15 22:25:44 +01:00
gpg --refresh-keys
2014-11-03 17:40:13 +01:00
2017-08-14 15:34:52 +02:00
echo ""
2017-10-16 17:08:52 +02:00
echo "$(tput setaf 2) -------------------------------"
2017-06-12 01:21:12 +02:00
echo " ✓ all done$(tput sgr0)"