about summary refs log tree commit homepage
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/unicorn_rails12
1 files changed, 8 insertions, 4 deletions
diff --git a/bin/unicorn_rails b/bin/unicorn_rails
index ab9f1c0..5ed054d 100755
--- a/bin/unicorn_rails
+++ b/bin/unicorn_rails
@@ -78,10 +78,14 @@ opts = OptionParser.new("", 24, '  ') do |opts|
     options[:config_file] = File.expand_path(f)
   end
 
-  opts.on("-P", "--path PATH", "DEPRECATED") do |v|
-    warn %q{Use of --path/-P is strongly discouraged}
-    warn %q{Use the RAILS_RELATIVE_URL_ROOT environment variable}
-    warn %q{  or the 'map' directive in the rackup config instead}
+  opts.on("-P PATH", "DEPRECATED") do |v|
+    warn %q{Use of -P is ambiguous and discouraged}
+    warn %q{Use --path or RAILS_RELATIVE_URL_ROOT instead}
+    ENV['RAILS_RELATIVE_URL_ROOT'] = v
+  end
+
+  opts.on("--path PATH", "Runs Rails app mounted at a specific path.",
+          "(default: /)") do |v|
     ENV['RAILS_RELATIVE_URL_ROOT'] = v
   end