Skip to content

Commit 43590c8

Browse files
committed
compile-go/compile.go: use single quotes for tags
1 parent d0c2f68 commit 43590c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compile-go/compile.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ func (c *compiler) execute(ctx context.Context, b build, cctx toolkit.CommandCon
243243
}
244244

245245
if len(c.compilerTags) > 0 {
246-
formattedTags = fmt.Sprintf("-tags=\"%s\"", strings.Join(c.compilerTags, " "))
246+
formattedTags = fmt.Sprintf("-tags='%s'", strings.Join(c.compilerTags, " "))
247247
}
248248

249249
cgoStr := "0"

0 commit comments

Comments
 (0)