Skip to content

Commit

Permalink
Merge pull request #198 from Bluebugs/bugs/quoted-tags
Browse files Browse the repository at this point in the history
Remove unecessary quote
  • Loading branch information
Bluebugs committed May 26, 2023
2 parents 29c5b96 + d7616dd commit 1065628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/command/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func fyneCommand(binary, command, icon string, ctx Context, image containerImage
// add tags to command, if any
tags := image.Tags()
if len(tags) > 0 {
args = append(args, "-tags", fmt.Sprintf("%q", strings.Join(tags, ",")))
args = append(args, "-tags", strings.Join(tags, ","))
}

if ctx.Metadata != nil {
Expand Down

0 comments on commit 1065628

Please sign in to comment.