Fix script/server to use the environment given by the -e toggle

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2552 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2005-10-13 18:13:22 +00:00
parent 4b72a4b12f
commit 634da0f010
1 changed files with 2 additions and 0 deletions

View File

@ -47,6 +47,8 @@ ARGV.options do |opts|
end
ENV["RAILS_ENV"] = OPTIONS[:environment]
RAILS_ENV.replace(OPTIONS[:environment]) if defined?(RAILS_ENV)
require RAILS_ROOT + "/config/environment"
require 'webrick_server'