From f84634aff3d6f28a17430c19305c74e39048d13e Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Mon, 13 Jan 2020 11:43:02 -0800 Subject: [PATCH] small log line improvements --- builder/vsphere/iso/step_add_cdrom.go | 2 +- builder/vsphere/iso/step_remote_upload.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 }