From c79259275a5abe59bca7a179f961878f8ebac879 Mon Sep 17 00:00:00 2001 From: Harshit Mehta Date: Fri, 17 Feb 2023 18:22:50 +0530 Subject: [PATCH] Execute install script in debug mode only when HELM_DEBUG flag is set (#219) --- scripts/install_plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_plugin.sh b/scripts/install_plugin.sh index b01c65f..b8a6d31 100755 --- a/scripts/install_plugin.sh +++ b/scripts/install_plugin.sh @@ -2,7 +2,7 @@ # Copied w/ love from the chartmuseum/helm-push :) -[ -z "$HELM_DEBUG" ] || set -x +[ ! -z "$HELM_DEBUG" ] && set -x name="helm-dashboard" repo="https://github.com/komodorio/${name}"