From d6c0621d7127eb59742d703574f6885793c230d8 Mon Sep 17 00:00:00 2001 From: carlad Date: Thu, 31 Mar 2016 15:55:17 +0200 Subject: [PATCH] remove fail from rake tasks to allow heroku deployment --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 5d4cd585..80871975 100644 --- a/Rakefile +++ b/Rakefile @@ -1,6 +1,6 @@ namespace :db do env = ENV["RAILS_ENV"] - fail "Cannot run rake db:create in production." if env == 'production' + # fail "Cannot run rake db:create in production." if env == 'production' desc "Create and migrate the #{env} database" task :create do sh "createdb travis_#{env}" rescue nil