aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-05-28 09:16:29 -0500
committerJoshua Peek <josh@joshpeek.com>2009-05-28 09:16:29 -0500
commitd17fb9dc766936efc721fc3e55ef9289902dc34c (patch)
tree33cffcf984527849afdaf34b33634c1f0459b4d0 /railties
parentf2f58f535520bfa77ab2d0ad1fb598f18349dd2e (diff)
downloadrails-d17fb9dc766936efc721fc3e55ef9289902dc34c.tar.gz
rails-d17fb9dc766936efc721fc3e55ef9289902dc34c.tar.bz2
rails-d17fb9dc766936efc721fc3e55ef9289902dc34c.zip
Fix script/server's default mount path [#2731 state:resolved]
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/commands/server.rb2
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|