diff --git a/scripts/package-cli b/scripts/package-cli index 83d0040f74..c7646dc25a 100755 --- a/scripts/package-cli +++ b/scripts/package-cli @@ -40,6 +40,6 @@ cp -f ./bin/hyperkube dist/artifacts/hyperkube${BIN_SUFFIX} CMD_NAME=dist/artifacts/k3s${BIN_SUFFIX} go generate -LDFLAGS="-X github.com/rancher/k3s/version.Version=$VERSION -w -s" +LDFLAGS="-X github.com/rancher/k3s/pkg/version.Version=$VERSION -X github.com/rancher/k3s/pkg/version.GitCommit=${COMMIT:0:8} -w -s" STATIC="-extldflags '-static'" CGO_ENABLED=0 go build -ldflags "$LDFLAGS $STATIC" -o ${CMD_NAME} ./cmd/k3s/main.go