Created
September 21, 2012 10:33
-
-
Save lmars/3760825 to your computer and use it in GitHub Desktop.
Capistrano growlnotify
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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