Skip to content

Instantly share code, notes, and snippets.

@unimatrixZxero
Created May 31, 2011 13:45
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 unimatrixZxero/1000521 to your computer and use it in GitHub Desktop.
Save unimatrixZxero/1000521 to your computer and use it in GitHub Desktop.
Play a song when you deploy with capistrano
namespace :deploy do
before 'deploy' do
# run deploy song if available and mpg321 is installed
system('[ -e deploy.mp3 ] && type mpg321 &>/dev/null && mpg321 deploy.mp3 &')
end unless ENV['MUSIC_OFF']
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment