Skip to content

Commit c75ea14

Browse files
committed
mkctr.go: fix GOARM env var
Updates tailscale/tailscale#15159 Signed-off-by: Irbe Krumina <irbe@tailscale.com>
1 parent 5497735 commit c75ea14

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mkctr.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ func createImageForBase(bp *buildParams, logf logf, base v1.Image, platform v1.P
417417
if err != nil {
418418
return nil, err
419419
}
420-
env = append(env, v)
420+
env = append(env, "GOARM="+v)
421421
}
422422

423423
files := map[string]string{}

0 commit comments

Comments
 (0)