Commit bdd60fe9 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/virtualbox: Message for vboxmanage command, not say

parent eacf257d
......@@ -46,7 +46,7 @@ func (s *stepVBoxManage) Run(state map[string]interface{}) multistep.StepAction
command[i] = buf.String()
}
ui.Say(fmt.Sprintf("Executing: %s", strings.Join(command, " ")))
ui.Message(fmt.Sprintf("Executing: %s", strings.Join(command, " ")))
if err := driver.VBoxManage(command...); err != nil {
err := fmt.Errorf("Error executing command: %s", err)
state["error"] = err
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment