Skip to content

Commit 61344ad

Browse files
committed
dashboard: fix build
Change-Id: I9c6a8f554a8bc591b0bab2809c529fad26bcd701 Reviewed-on: https://go-review.googlesource.com/13121 Reviewed-by: Andrew Gerrand <[email protected]>
1 parent cae837b commit 61344ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dashboard/builders.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ type BuildConfig struct {
5656
}
5757

5858
func (c *BuildConfig) Env() []string {
59-
return append([]string("GO_BUILDER_NAME="+c.Name), c.env...)
59+
return append([]string{"GO_BUILDER_NAME=" + c.Name}, c.env...)
6060
}
6161

6262
func (c *BuildConfig) GOOS() string { return c.Name[:strings.Index(c.Name, "-")] }

0 commit comments

Comments
 (0)