mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
Merge pull request #6579 from cagataygurturk/fix-makefile
Fixed Makefile with the new package name
This commit is contained in:
commit
410ec5319f
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
|
@ -37,15 +37,15 @@ BINARY_VERSION ?= ${GIT_TAG}
|
|||
|
||||
# Only set Version if building a tag or VERSION is set
|
||||
ifneq ($(BINARY_VERSION),)
|
||||
LDFLAGS += -X helm.sh/helm/internal/version.version=${BINARY_VERSION}
|
||||
LDFLAGS += -X helm.sh/helm/v3/internal/version.version=${BINARY_VERSION}
|
||||
endif
|
||||
|
||||
# Clear the "unreleased" string in BuildMetadata
|
||||
ifneq ($(GIT_TAG),)
|
||||
LDFLAGS += -X helm.sh/helm/internal/version.metadata=
|
||||
LDFLAGS += -X helm.sh/helm/v3/internal/version.metadata=
|
||||
endif
|
||||
LDFLAGS += -X helm.sh/helm/internal/version.gitCommit=${GIT_COMMIT}
|
||||
LDFLAGS += -X helm.sh/helm/internal/version.gitTreeState=${GIT_DIRTY}
|
||||
LDFLAGS += -X helm.sh/helm/v3/internal/version.gitCommit=${GIT_COMMIT}
|
||||
LDFLAGS += -X helm.sh/helm/v3/internal/version.gitTreeState=${GIT_DIRTY}
|
||||
|
||||
.PHONY: all
|
||||
all: build
|
||||
|
|
|
|||
Loading…
Reference in a new issue