From 50be49e5a10f6edcf1ea09d847221e93e10ae8bb Mon Sep 17 00:00:00 2001 From: Tyler Auerbeck Date: Fri, 19 Nov 2021 16:34:27 -0500 Subject: [PATCH 1/2] Update HELM_PLUGIN_SELF -> HELM_PLUGIN_DIR Signed-off-by: Tyler Auerbeck --- pkg/plugin/plugin_test.go | 2 +- pkg/plugin/testdata/plugdir/good/hello/plugin.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/plugin/plugin_test.go b/pkg/plugin/plugin_test.go index 2bbdff21d52..3b44a6eb555 100644 --- a/pkg/plugin/plugin_test.go +++ b/pkg/plugin/plugin_test.go @@ -193,7 +193,7 @@ func TestLoadDir(t *testing.T) { Version: "0.1.0", Usage: "usage", Description: "description", - Command: "$HELM_PLUGIN_SELF/hello.sh", + Command: "$HELM_PLUGIN_DIR/hello.sh", IgnoreFlags: true, Hooks: map[string]string{ Install: "echo installing...", diff --git a/pkg/plugin/testdata/plugdir/good/hello/plugin.yaml b/pkg/plugin/testdata/plugdir/good/hello/plugin.yaml index 2b972da59a7..b857b55ee0e 100644 --- a/pkg/plugin/testdata/plugdir/good/hello/plugin.yaml +++ b/pkg/plugin/testdata/plugdir/good/hello/plugin.yaml @@ -3,7 +3,7 @@ version: "0.1.0" usage: "usage" description: |- description -command: "$HELM_PLUGIN_SELF/hello.sh" +command: "$HELM_PLUGIN_DIR/hello.sh" ignoreFlags: true hooks: install: "echo installing..." From 54e115df5623213371ba27ced6407a635e8a33ab Mon Sep 17 00:00:00 2001 From: Tyler Auerbeck Date: Wed, 24 Nov 2021 09:56:31 -0500 Subject: [PATCH 2/2] Trigger Build Signed-off-by: Tyler Auerbeck