From 3ad37ea24463410e2909dd0f6f4268a5ebd9abf3 Mon Sep 17 00:00:00 2001 From: Fr4nz D13trich Date: Sun, 21 Dec 2025 12:50:10 +0100 Subject: [PATCH] Help page extended --- helium_helper.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/helium_helper.sh b/helium_helper.sh index 6212b2c..e2f071c 100755 --- a/helium_helper.sh +++ b/helium_helper.sh @@ -267,7 +267,7 @@ compare_version() { help() { echo -e "\n${CYN}${SCRIPT_NAME}${CRS}\n" echo -e "Helium Browser installer & updater script\n" - echo -e "Syntax: helium_helper.sh [ -i | -u | -c | -s | -h ]\n" + echo -e "Syntax: helium_helper.sh [ -i | -u | -r | -c | -s | -h ]\n" echo -e "Options:\n" echo -e "\t-i\tDownload & install Helium from GitHub" echo -e "\t-u\tUpdate Helium from GitHub" @@ -276,8 +276,8 @@ help() { echo -e "\t-s\tShow script version" echo -e "\t-h\tPrint this help page.\n" echo -e "Configured locations:\n" - echo -e "\t${GRN}${INSTALL_PATH}${CRS}\t\tInstall directory" - echo -e "\t${GRN}${LAUNCHER_PATH}${CRS}\tLauncher directory" + echo -e "\t${GRN}${INSTALL_PATH}${CRS}\t\tInstall location" + echo -e "\t${GRN}${LAUNCHER_PATH}${CRS}\tLauncher location" echo -e "\t${GRN}${SCRIPT_PATH}${CRS}\t\t\tScript location\n" } @@ -324,6 +324,11 @@ while getopts ":i,:u,:r,:c,:s,:h" OPTION ; do help exit;; + *) + echo -e "\n ${YEL}Option not recognized... Check help below!${CRS}" + help + exit;; + esac done