1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00

fix: typo in error message

This commit is contained in:
Carlos Alexandro Becker 2023-09-07 18:35:32 +00:00
parent f5590f11a1
commit 67039edc35
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -153,7 +153,7 @@ func (Pipe) Run(ctx *context.Context) error {
func process(ctx *context.Context, docker config.Docker, artifacts []*artifact.Artifact) error {
if len(artifacts) == 0 {
log.Warn("not binaries or packages found for the given platform - COPY/ADD may not work")
log.Warn("no binaries or packages found for the given platform - COPY/ADD may not work")
}
tmp, err := os.MkdirTemp("", "goreleaserdocker")
if err != nil {