diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2019-03-11 14:39:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 14:39:03 +0100 |
commit | 6ebd2e6d888259a5ef5a47da398840969d24a9cc (patch) | |
tree | b8a4d22d88e896015d9fda94eb7eecc16891b07e /railties/lib | |
parent | 5f7e01c84c7b8da7a8fb3264ff393330db170565 (diff) | |
parent | bcc1207a8ebb730f6a86d1451e6c9089e5bfc89f (diff) | |
download | rails-6ebd2e6d888259a5ef5a47da398840969d24a9cc.tar.gz rails-6ebd2e6d888259a5ef5a47da398840969d24a9cc.tar.bz2 rails-6ebd2e6d888259a5ef5a47da398840969d24a9cc.zip |
Merge pull request #35566 from prathamesh-sonpatki/server-u
Use the -u switch for the `rails server` banner
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/commands/server/server_command.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/server/server_command.rb b/railties/lib/rails/commands/server/server_command.rb index 47c3f05bb3..74adc967e5 100644 --- a/railties/lib/rails/commands/server/server_command.rb +++ b/railties/lib/rails/commands/server/server_command.rb @@ -255,7 +255,7 @@ module Rails end def self.banner(*) - "rails server [thin/puma/webrick] [options]" + "rails server -u [thin/puma/webrick] [options]" end def prepare_restart |