mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-11-24 22:28:43 +00:00
12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
# Build the binary.
|
|
go build --ldflags '-extldflags "-static" -s' pause.go
|
|
|
|
# Run goupx to shrink binary size.
|
|
go get github.com/pwaller/goupx
|
|
goupx pause
|