From: Sylvain Desbureaux Date: Tue, 5 Jan 2021 12:24:49 +0000 (+0100) Subject: [GLOBAL] Fix Makefile typo X-Git-Tag: 7.0.1~24^2~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=f9f628159e4ab7888f2077ae7e830e8136591db7;p=oom.git [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 Change-Id: I22c52d538f9f396bd4028b6e0f0adcecb8e8df61 (cherry picked from commit a0b1fb1a677d01d0900eee39e07829cdb93a1b7b) --- diff --git a/kubernetes/Makefile b/kubernetes/Makefile index 08b028afe1..170bbb0834 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