Use consistent terms for describing local flag

This commit is contained in:
Chris Roberts 2018-07-18 14:19:29 -07:00
parent 7a623d2826
commit 8445b496d8
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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