Skip to content

Commit

Permalink
packer: fix filename in verbose logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lbajolet-hashicorp committed Apr 12, 2024
1 parent 11da765 commit 40db75f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packer/plugin-getter/plugins.go
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,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
}
Expand Down

0 comments on commit 40db75f

Please sign in to comment.