diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-01-05 13:24:49 +0100 |
---|---|---|
committer | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-01-05 13:24:49 +0100 |
commit | a0b1fb1a677d01d0900eee39e07829cdb93a1b7b (patch) | |
tree | 7d7c6adc62a9a1006238a39c468fc5ad42728139 | |
parent | 50d29a32cadf7c8c91e3409d8d604cc4852dadb4 (diff) |
[GLOBAL] Fix Makefile typo
One of Makefile action is to copy `helm` directory into `packages` one.
Change done in order to choose helm binary accidentally made this
behavior to work _only_ if helm binary is `helm`.
This patch set it back to previous behaviour for this particular
command.
Issue-ID: OOM-2562
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: I22c52d538f9f396bd4028b6e0f0adcecb8e8df61
-rw-r--r-- | kubernetes/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/Makefile b/kubernetes/Makefile index 81d35c5feb..3c5254ca27 100644 --- a/kubernetes/Makefile +++ b/kubernetes/Makefile @@ -85,7 +85,7 @@ clean: # publish helm plugins via distrubtion directory plugins: - @cp -R $(HELM_BIN) $(PACKAGE_DIR)/ + @cp -R helm $(PACKAGE_DIR)/ # start up a local helm repo to serve up helm chart packages # WARNING: Only helm < v3 supported |