Commit c2838c2d

mo k <mo@mokhan.ca>
2013-02-09 06:51:39
remove comments
1 parent f226acc
Changed files (1)
lib/tasks/deployment.rake
@@ -8,14 +8,10 @@ namespace :deploy do
   task :production, :tag do |t, args|
     tag_to_deploy = args.tag
     if tag_to_deploy.blank?
-      #puts "please specify the name of the tag to deploy"
-      #puts "E.g. rake deploy:production['staging-2012-06-02-1-mo-user-settings']"
       sh "cap production deploy:migrations"
     else
       puts "deploying to production from tag #{tag_to_deploy}"
       sh "cap production deploy:migrations -s tag=#{tag_to_deploy}"
-      #sh "cap production deploy -s tag=#{tag_to_deploy}"
-      #sh "cap production deploy:migrations"
       sh "curl http://cakeside.com/ > /dev/null"
     end
   end