Created
September 4, 2009 22:29
-
-
Save mdarby/181192 to your computer and use it in GitHub Desktop.
Revisions
-
mdarby created this gist
Sep 4, 2009 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ before "deploy", "deploy:check_revision" namespace :deploy do desc "Make sure there is something to deploy" task :check_revision, :roles => [:web] do unless `git rev-parse HEAD` == `git rev-parse origin/master` puts "" puts " \033[1;33m**************************************************\033[0m" puts " \033[1;33m* WARNING: HEAD is not the same as origin/master *\033[0m" puts " \033[1;33m**************************************************\033[0m" puts "" exit end end end