Skip to content

Commit

Permalink
getbinariesfromquay: Remove - separating arch from variant (#38)
Browse files Browse the repository at this point in the history
## Description

Renames binaries to be more consistent in and of itself and also compared to other Go projects that provide multi-arch binaries.

## Why is this needed

@gianarb asked me to rename the binaries in tinkerbell/smee#122 to match this scheme, but I think that this PR is the better directon.
  • Loading branch information
mergify[bot] authored Jan 20, 2021
2 parents b385de2 + e8ffd43 commit ce7a79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/getbinariesfromquay/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func main() {
}
if arch.Platform.Variant != "" {
syss.VariantChoice = arch.Platform.Variant
imgDir = imgDir + "-" + arch.Platform.Variant
imgDir = imgDir + arch.Platform.Variant
}
archImg, err := docker.ImageFromName(ctx, syss, imageR)
if err != nil {
Expand Down

0 comments on commit ce7a79b

Please sign in to comment.