Skip to content

Commit 3587c06

Browse files
authored
refactor(Makefile): Replace HELM_DATA_HOME with HELM_HOME (#789)
Signed-off-by: yxxhero <[email protected]>
1 parent 71f4a88 commit 3587c06

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
HELM_DATA_HOME ?= $(shell helm env HELM_DATA_HOME)
1+
HELM_HOME ?= $(shell helm env HELM_DATA_HOME)
22
VERSION := $(shell sed -n -e 's/version:[ "]*\([^"]*\).*/\1/p' plugin.yaml)
33

44
HELM_3_PLUGINS := $(shell helm env HELM_PLUGINS)
@@ -15,9 +15,9 @@ format:
1515

1616
.PHONY: install
1717
install: build
18-
mkdir -p $(HELM_DATA_HOME)/plugins/helm-diff/bin
19-
cp bin/diff $(HELM_DATA_HOME)/plugins/helm-diff/bin
20-
cp plugin.yaml $(HELM_DATA_HOME)/plugins/helm-diff/
18+
mkdir -p $(HELM_HOME)/plugins/helm-diff/bin
19+
cp bin/diff $(HELM_HOME)/plugins/helm-diff/bin
20+
cp plugin.yaml $(HELM_HOME)/plugins/helm-diff/
2121

2222
.PHONY: install/helm3
2323
install/helm3: build

0 commit comments

Comments
 (0)