Merge pull request #8371 from stephentawn/master

Fix error message when ovftool is missing
pull/8374/head
Megan Marsh 7 years ago committed by GitHub
commit 437983343a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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