packer: fix filename in verbose logs

pull/12964/head
Lucas Bajolet 2 years ago committed by Lucas Bajolet
parent 04a2542a6f
commit 32e64c98d1

@ -864,7 +864,7 @@ func (pr *Requirement) InstallLatest(opts InstallOptions) (*Installation, error)
break
}
if copyFrom == nil {
err := fmt.Errorf("could not find a %s file in zipfile", checksum.Filename)
err := fmt.Errorf("could not find a %q file in zipfile", expectedBinaryFilename)
errs = multierror.Append(errs, err)
return nil, errs
}

Loading…
Cancel
Save