Fix error message when ovftool is missing

pull/8371/head
Stephen Tawn 7 years ago
parent c09bb52a92
commit c66219084e

@ -73,7 +73,7 @@ func (s *StepExport) Run(ctx context.Context, state multistep.StateBag) multiste
ovftool := GetOVFTool()
if ovftool == "" {
err := fmt.Errorf("Error %s not found: ", ovftool)
err := fmt.Errorf("Error ovftool not found")
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt

Loading…
Cancel
Save