Fix error message when ovftool is missing

This commit is contained in:
Stephen Tawn 2019-11-14 23:11:16 +00:00
parent c09bb52a92
commit c66219084e
1 changed files with 1 additions and 1 deletions

View File

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