Skip to content

Commit 21b44b1

Browse files
committed
fix: tailscale static builds
Moving to new toolchain meant we didn't set `CGO_ENABLED=0` from bldr anymore. Explicitly set it. Signed-off-by: Noel Georgi <[email protected]>
1 parent 5f1070a commit 21b44b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

network/tailscale/pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ steps:
2727
- network: none
2828
build:
2929
- |
30-
go build \
30+
CGO_ENABLED=0 go build \
3131
-C tailscale \
3232
-o ../dist \
3333
-ldflags "-X tailscale.com/version.shortStamp={{ .TAILSCALE_VERSION }} \

0 commit comments

Comments
 (0)