From 7ae035234d8143472ad23201f9d32af80ab44320 Mon Sep 17 00:00:00 2001 From: ties Date: Fri, 6 Sep 2024 10:22:27 +0000 Subject: [PATCH] Update createHelmYaml.sh --- createHelmYaml.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/createHelmYaml.sh b/createHelmYaml.sh index 78f99ab..0bd2f65 100644 --- a/createHelmYaml.sh +++ b/createHelmYaml.sh @@ -21,17 +21,17 @@ function checkKubeConfig(){ function printGlobal(){ if [ -e "Chart.yaml" ]; then - printHelm() + printHelm else - printRaw() + printRaw fi } function deployGlobal(){ if [ -e "Chart.yaml" ]; then - deployHelm() + deployHelm else - deployRaw() + deployRaw fi }