small log line improvements

This commit is contained in:
Megan Marsh 2020-01-13 11:43:02 -08:00
parent 6a2d73a0e9
commit f84634aff3
2 changed files with 2 additions and 2 deletions

View File

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

View File

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