Skip to content

Commit

Permalink
Use const instead of explicit slice
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascamata committed Jan 14, 2025
1 parent b639f55 commit 7076332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/goreleaser/internal/configure.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ var (
&fullBuildConfig{targetOS: "darwin", targetArch: darwinArchs},
&fullBuildConfig{targetOS: "windows", targetArch: winArchs},
}
d.containerImages = newContainerImages(d.name, "linux", []string{"386", "amd64", "arm", "arm64", "ppc64le", "s390x"}, containerImageOptions{armVersion: "7"})
d.containerImages = newContainerImages(d.name, "linux", baseArchs, containerImageOptions{armVersion: "7"})
d.containerImageManifests = newContainerImageManifests(d.name, "linux", baseArchs)
}).WithPackagingDefaults().Build()

Expand Down

0 comments on commit 7076332

Please sign in to comment.