Setup: longer sudo timeout in setup script (kinda).

This commit is contained in:
Artem Sapegin 2013-02-24 23:24:34 +04:00
parent 2571fc7f08
commit d4e7928be9
1 changed files with 6 additions and 0 deletions

View File

@ -21,11 +21,13 @@ echo
# OS X
header "Updating OS X..."
sudo -v
sudo softwareupdate -i -a
echo
# Homebrew
header "Updating Homebrew..."
sudo -v
brew update
brew upgrade
brew cleanup
@ -33,22 +35,26 @@ echo
# NPM
header "Updating NPM..."
sudo -v
npm update npm -g
npm update -g
echo
# Ruby gems
header "Updating Ruby gems..."
sudo -v
sudo gem update
echo
# Python
header "Updating Python packages..."
sudo -v
sudo pip install --upgrade fabric
echo
# git-friendly
header "Updating git-friendly..."
sudo -v
sudo bash < <( curl https://raw.github.com/jamiew/git-friendly/master/install.sh)
echo