Skip to content

Instantly share code, notes, and snippets.

@Kikobeats
Created June 24, 2014 14:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kikobeats/867d72979009a7539d1b to your computer and use it in GitHub Desktop.
Save Kikobeats/867d72979009a7539d1b to your computer and use it in GitHub Desktop.
Update System
#!/bin/bash
## Brew update
cd "$(brew --prefix)"
git fetch origin
git reset --hard origin/master
brew update
brew upgrade
brew cleanup
## Cabal Update
cabal update
cabal install cabal-install --force-reinstalls
## NPM update
sudo chown -R "$(whoami)" ~/.npm
sudo npm update -g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment