updated help

pull/1/head
Daniel Mikula 2023-05-15 10:03:26 +02:00
parent fb4deeea45
commit dc16660e00
1 changed files with 3 additions and 3 deletions

View File

@ -4,9 +4,9 @@
# Date : 11-05-2023 # Date : 11-05-2023
show_help() { show_help() {
echo "Usage: $0 [-m] [-a <app_name>]" echo "Usage: $0 [-m <boolean>] [-a <app_name>]"
echo "Options:" echo "Options:"
echo " -m Install helm" echo " -m <boolean> Install helm"
echo " -a <app_name> Specify the app name" echo " -a <app_name> Specify the app name"
} }
@ -17,7 +17,7 @@ while getopts "hm:a:" option; do
case $option in case $option in
h) h)
show_help show_help
exit 1 exit 0
;; ;;
m) m)
helm_install="$OPTARG" helm_install="$OPTARG"