New update script.

This commit is contained in:
Artem Sapegin 2012-12-12 12:55:22 +04:00
parent ef82099886
commit b72402e452
4 changed files with 65 additions and 7 deletions

View File

@ -36,11 +36,11 @@ alias rm="rm -i"
# Gzip-enabled `curl`
#alias gurl="curl --compressed"
# Get OS X Software Updates, and update installed Ruby gems, Homebrew, npm, and their installed packages
alias update="sudo softwareupdate -i -a; brew update; brew upgrade; brew cleanup; npm update npm -g; npm update -g"
# Software/libraries update
alias update="source "$HOME/dotfiles/setup/update.sh""
# Update dotfiles
alias dotfiles="cd "$HOME/dotfiles" && git pull && ./sync.py && cd - > /dev/null 2>&1 && nyan"
alias dotfiles="cd "$HOME/dotfiles" && git pull && ./sync.py && . "$HOME/.bashrc" && cd - > /dev/null 2>&1 && nyan"
# Clean up LaunchServices to remove duplicates in the “Open With” menu
#alias lscleanup="/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user && killall Finder"

View File

@ -6,8 +6,8 @@
brew install exiftool imagemagick optipng libjpeg gifsicle
formulas='pngout.rb defluff.rb cryopng.rb imgo.rb'
formulas='pngout.rb defluff.rb cryopng.rb imgo.rb'
for package in $formulas
do
brew install "https://raw.github.com/imgo/imgo-tools/master/Formula/"$package
brew install "https://raw.github.com/imgo/imgo-tools/master/Formula/"$package
done

View File

@ -1,6 +1,6 @@
#!/bin/bash
# Installs Homebrew, Git, git-extras, git-friendly, Node.js, configures Apache, PHP, MySQL, etc.
# Installs Homebrew, Git, git-extras, git-friendly, hub, Node.js, configures Apache, PHP, MySQL, etc.
# Ask for the administrator password upfront
sudo -v
@ -18,6 +18,7 @@ brew upgrade
brew install coreutils
# GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
brew install findutils
brew install tree
# More recent versions of some OS X tools
brew tap homebrew/dupes
@ -26,6 +27,7 @@ brew install homebrew/dupes/grep
# Git
brew install git
brew install git-extras
brew install hub
sudo bash < <( curl https://raw.github.com/jamiew/git-friendly/master/install.sh)
# MySQL
@ -52,7 +54,7 @@ brew install unrar
# Node.js
brew install node
brew install casperjs
npm install -g grunt
npm install -g grunt-cli
npm install -g jshint
npm install -g bower

56
setup/update.sh Executable file
View File

@ -0,0 +1,56 @@
#!/bin/bash
# Get OS X Software Updates, update Homebrew, NPM, Ruby packages, dotfiles and some other software
function header() {
echo -e "$(tput sgr 0 1)$(tput setaf 6)$1$(tput sgr0)"
}
# Ask for the administrator password upfront
sudo -v
echo
# Dotfiles
header "Updating dotfiles..."
cd "$HOME/dotfiles"
git pull
./sync.py
source "$HOME/.bashrc"
cd - > /dev/null 2>&1
echo
# OS X
header "Updating OS X..."
sudo softwareupdate -i -a
echo
# Homebrew
header "Updating Homebrew..."
brew update
brew upgrade
brew cleanup
echo
# NPM
header "Updating NPM..."
npm update npm -g
npm update -g
echo
# Ruby gems
header "Updating Ruby gems..."
sudo gem update
echo
# Python
header "Updating Python packages..."
sudo pip install --upgrade fabric
echo
# git-friendly
header "Updating git-friendly..."
sudo bash < <( curl https://raw.github.com/jamiew/git-friendly/master/install.sh)
echo
# Nyan cat! Yay!
nyan