Use consistent terms for describing local flag
This commit is contained in:
parent
7a623d2826
commit
8445b496d8
|
@ -16,7 +16,7 @@ module VagrantPlugins
|
|||
options[:force] = force
|
||||
end
|
||||
|
||||
o.on("--local", "Include local project plugins for expunge") do |l|
|
||||
o.on("--local", "Include plugins from local project for expunge") do |l|
|
||||
options[:env_local] = l
|
||||
end
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ module VagrantPlugins
|
|||
o.banner = "Usage: vagrant plugin list [-h]"
|
||||
|
||||
# Stub option to allow Vagrantfile loading
|
||||
o.on("--local", "Include local plugins"){|_|}
|
||||
o.on("--local", "Include local project plugins"){|_|}
|
||||
end
|
||||
|
||||
# Parse the options
|
||||
|
|
|
@ -12,7 +12,7 @@ module VagrantPlugins
|
|||
opts = OptionParser.new do |o|
|
||||
o.banner = "Usage: vagrant plugin repair [-h]"
|
||||
|
||||
o.on("--local", "Install plugin for local project only") do |l|
|
||||
o.on("--local", "Repair plugins in local project") do |l|
|
||||
options[:env_local] = l
|
||||
end
|
||||
end
|
||||
|
|
|
@ -15,7 +15,7 @@ module VagrantPlugins
|
|||
o.banner = "Usage: vagrant plugin update [names...] [-h]"
|
||||
o.separator ""
|
||||
|
||||
o.on("--local", "Remove plugin from local project") do |l|
|
||||
o.on("--local", "Update plugin in local project") do |l|
|
||||
options[:env_local] = l
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue