##// END OF EJS Templates
Don't abort when database.yml is not present....
Jean-Philippe Lang -
r10972:0450547b663b
parent child
Show More
@@ -61,10 +61,10 if File.exist?(database_file)
61 61 end
62 62 end
63 63 else
64 abort("No adapter found in config/database.yml, please configure it first")
64 warn("No adapter found in config/database.yml, please configure it first")
65 65 end
66 66 else
67 abort("Please configure your config/database.yml first")
67 warn("Please configure your config/database.yml first")
68 68 end
69 69
70 70 group :development do
General Comments 0
You need to be logged in to leave comments. Login now