summaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-01-19 14:44:26 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-01-19 14:44:26 +0000
commit0450547b663bb6868ea96117eb0b5507cb68357f (patch)
tree67d744a5fefd87a8b5b740346e83eb52614f803a /Gemfile
parentdb26041f831c134f3de4def1a60c9f397618894a (diff)
downloadredmine-0450547b663bb6868ea96117eb0b5507cb68357f.tar.gz
redmine-0450547b663bb6868ea96117eb0b5507cb68357f.zip
Don't abort when database.yml is not present.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11202 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index c6ffb92f6..02ef13638 100644
--- a/Gemfile
+++ b/Gemfile
@@ -61,10 +61,10 @@ if File.exist?(database_file)
end
end
else
- abort("No adapter found in config/database.yml, please configure it first")
+ warn("No adapter found in config/database.yml, please configure it first")
end
else
- abort("Please configure your config/database.yml first")
+ warn("Please configure your config/database.yml first")
end
group :development do