mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-11 09:40:17 -04:00
packer: fix filename in verbose logs
This commit is contained in:
parent
04a2542a6f
commit
32e64c98d1
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue