##// 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 end
61 end
62 end
62 end
63 else
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 end
65 end
66 else
66 else
67 abort("Please configure your config/database.yml first")
67 warn("Please configure your config/database.yml first")
68 end
68 end
69
69
70 group :development do
70 group :development do
General Comments 0
You need to be logged in to leave comments. Login now