diff --git a/builder/vsphere/iso/step_add_cdrom.go b/builder/vsphere/iso/step_add_cdrom.go index 6838e5209..f5742c0f8 100644 --- a/builder/vsphere/iso/step_add_cdrom.go +++ b/builder/vsphere/iso/step_add_cdrom.go @@ -47,7 +47,7 @@ func (s *StepAddCDRom) Run(_ context.Context, state multistep.StateBag) multiste } } - ui.Say("Mount ISO images...") + ui.Say("Mounting ISO images...") if len(s.Config.ISOPaths) > 0 { for _, path := range s.Config.ISOPaths { if err := vm.AddCdrom(s.Config.CdromType, path); err != nil { diff --git a/builder/vsphere/iso/step_remote_upload.go b/builder/vsphere/iso/step_remote_upload.go index 398a25b11..ac395a66b 100644 --- a/builder/vsphere/iso/step_remote_upload.go +++ b/builder/vsphere/iso/step_remote_upload.go @@ -34,7 +34,7 @@ func (s *StepRemoteUpload) Run(_ context.Context, state multistep.StateBag) mult ui.Say(fmt.Sprintf("Uploading %s to %s", filename, remotePath)) if exists := ds.FileExists(remotePath); exists == true { - ui.Say("File already upload") + ui.Say("File already uploaded; continuing") state.Put("iso_remote_path", fullRemotePath) return multistep.ActionContinue }