diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-05-28 09:16:29 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-05-28 09:16:29 -0500 |
commit | d17fb9dc766936efc721fc3e55ef9289902dc34c (patch) | |
tree | 33cffcf984527849afdaf34b33634c1f0459b4d0 | |
parent | f2f58f535520bfa77ab2d0ad1fb598f18349dd2e (diff) | |
download | rails-d17fb9dc766936efc721fc3e55ef9289902dc34c.tar.gz rails-d17fb9dc766936efc721fc3e55ef9289902dc34c.tar.bz2 rails-d17fb9dc766936efc721fc3e55ef9289902dc34c.zip |
Fix script/server's default mount path [#2731 state:resolved]
-rw-r--r-- | railties/lib/commands/server.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/commands/server.rb b/railties/lib/commands/server.rb index 1b6505f2dc..01dd33fa8c 100644 --- a/railties/lib/commands/server.rb +++ b/railties/lib/commands/server.rb @@ -17,7 +17,7 @@ options = { :config => RAILS_ROOT + "/config.ru", :detach => false, :debugger => false, - :path => '/' + :path => nil } ARGV.clone.options do |opts| |