You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
865 B
29 lines
865 B
Index: src/k8s.io/helm/Makefile |
|
--- src/k8s.io/helm/Makefile.orig 2022-10-13 22:18:25.000000000 +0200 |
|
+++ src/k8s.io/helm/Makefile 2022-10-14 21:07:10.534754000 +0200 |
|
@@ -22,8 +22,8 @@ |
|
TAGS := |
|
TESTS := . |
|
TESTFLAGS := |
|
-LDFLAGS := -w -s |
|
-GOFLAGS := |
|
+LDFLAGS := |
|
+GOFLAGS := -v |
|
CGO_ENABLED ?= 0 |
|
|
|
# Rebuild the binary if any of these files change |
|
@@ -32,10 +32,10 @@ |
|
# Required for globs to work correctly |
|
SHELL = /usr/bin/env bash |
|
|
|
-GIT_COMMIT = $(shell git rev-parse HEAD) |
|
-GIT_SHA = $(shell git rev-parse --short HEAD) |
|
-GIT_TAG = $(shell git describe --tags --abbrev=0 --exact-match 2>/dev/null) |
|
-GIT_DIRTY = $(shell test -n "`git status --porcelain`" && echo "dirty" || echo "clean") |
|
+GIT_COMMIT = 000000 |
|
+GIT_SHA = 000000 |
|
+GIT_TAG = master |
|
+GIT_DIRTY = clean |
|
|
|
ifdef VERSION |
|
BINARY_VERSION = $(VERSION)
|
|
|