From 17d92812480169eecde089a305fa180cb6c4de5f Mon Sep 17 00:00:00 2001 From: Sylvain Desbureaux Date: Mon, 12 Apr 2021 11:59:50 +0200 Subject: [PATCH] add install script into package current release package doesn't provide `script/install_plugins.sh`which is mandatory if we want to install from package. this commit is adding them, allowing to install helm push in a "non Internet" environment (with the use of `HELM_PUSH_PLUGIN_NO_INSTALL_HOOK`) --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 462a85b..717591b 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,7 @@ build_windows: link_windows: @cp bin/windows/amd64/helmpush ./bin/helmpush + @cp scripts/install_plugin.sh ./scripts/install_plugin.sh build_linux: export GOARCH=amd64 build_linux: export CGO_ENABLED=0 @@ -26,6 +27,7 @@ build_linux: link_linux: @cp bin/linux/amd64/helmpush ./bin/helmpush + @cp scripts/install_plugin.sh ./scripts/install_plugin.sh build_mac: export GOARCH=amd64 build_mac: export CGO_ENABLED=0 @@ -38,6 +40,7 @@ build_mac: link_mac: @cp bin/darwin/amd64/helmpush ./bin/helmpush + @cp scripts/install_plugin.sh ./scripts/install_plugin.sh .PHONY: clean clean: