Fix typo in UI Prefix for trigger UI
This commit is contained in:
parent
1220122b46
commit
ee985f9f7f
|
@ -43,7 +43,7 @@ module Vagrant
|
|||
machine = environment[:machine]
|
||||
machine_name = machine.name if machine
|
||||
|
||||
ui = Vagrant::UI::Prefixed.new(env.ui, "vargant")
|
||||
ui = Vagrant::UI::Prefixed.new(env.ui, "vagrant")
|
||||
triggers = Vagrant::Plugin::V2::Trigger.new(env, env.vagrantfile.config.trigger, machine, ui)
|
||||
end
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ module Vagrant
|
|||
|
||||
machine = env[:machine]
|
||||
machine_name = machine.name if machine
|
||||
ui = Vagrant::UI::Prefixed.new(@env.ui, "vargant")
|
||||
ui = Vagrant::UI::Prefixed.new(@env.ui, "vagrant")
|
||||
@triggers = Vagrant::Plugin::V2::Trigger.new(@env, @env.vagrantfile.config.trigger, machine, ui)
|
||||
end
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ module Vagrant
|
|||
@main_args, @sub_command, @sub_args = split_main_and_subcommand(argv)
|
||||
|
||||
if Vagrant::Util::Experimental.feature_enabled?("typed_triggers")
|
||||
ui = Vagrant::UI::Prefixed.new(env.ui, "vargant")
|
||||
ui = Vagrant::UI::Prefixed.new(env.ui, "vagrant")
|
||||
@triggers = Vagrant::Plugin::V2::Trigger.new(env, env.vagrantfile.config.trigger, nil, ui)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue