From c7ec0b15291d67d5217d3a41d7deff677c959aa1 Mon Sep 17 00:00:00 2001 From: Wonyeong Choi Date: Sun, 6 Nov 2022 11:31:00 +0900 Subject: [PATCH] Update logic of non-git situation just to print warning logs Signed-off-by: Wonyeong Choi Signed-off-by: Tom Runyon --- scripts/get-helm-3 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/get-helm-3 b/scripts/get-helm-3 index 96ed0a408..6177ba1a2 100755 --- a/scripts/get-helm-3 +++ b/scripts/get-helm-3 @@ -100,8 +100,7 @@ verifySupported() { fi if [ "${HAS_GIT}" != "true" ]; then - echo "Git is required for plugin install" - exit 1 + echo "[WARNING] Could not find git. It is required for plugin installation." fi }