Skip to content

Instantly share code, notes, and snippets.

@lmars
Created September 21, 2012 10:33
Show Gist options
  • Save lmars/3760825 to your computer and use it in GitHub Desktop.
Save lmars/3760825 to your computer and use it in GitHub Desktop.
Capistrano growlnotify
cap() {
bundle exec cap $@
if [ $? -eq 0 ]; then
growlnotify --image=$HOME/Pictures/success.png -m 'Success!' "cap $@"
else
growlnotify --image=$HOME/Pictures/failure.png -m 'Failure!' "cap $@"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment