Update SSH config help to properly reflect "--host" usage.

This commit is contained in:
Mitchell Hashimoto 2012-07-30 11:42:07 -07:00
parent 9d75a3d1dd
commit 002a83d7f7
1 changed files with 2 additions and 2 deletions

View File

@ -11,11 +11,11 @@ module VagrantPlugins
options = {}
opts = OptionParser.new do |opts|
opts.banner = "Usage: vagrant ssh-config [vm-name] [-h name]"
opts.banner = "Usage: vagrant ssh-config [vm-name] [--host name]"
opts.separator ""
opts.on("--host COMMAND", "Name the host for the config..") do |h|
opts.on("--host NAME", "Name the host for the config..") do |h|
options[:host] = h
end
end