load the misc library and improve comments

This commit is contained in:
Kjeld Schouten-Lebbing 2022-12-27 13:07:15 +01:00
parent 89fa678cd9
commit 520caadacf

View File

@ -18,8 +18,6 @@ source includes/backup.sh
source includes/chores.sh
# shellcheck source=includes/colors.sh
source includes/colors.sh
# shellcheck source=includes/dns.sh
source functions/dns.sh
# shellcheck source=includes/help.sh
source includes/help.sh
# shellcheck source=includes/help.sh
@ -35,6 +33,12 @@ source includes/update.sh
# shellcheck source=includes/update_self.sh
source includes/update_self.sh
# Libraries loaded from Heavyscript
# shellcheck source=functions/dns.sh
source functions/dns.sh
# shellcheck source=functions/misc.sh
source functions/misc.sh
#If no argument is passed, set flag to show menu
if [[ -z "$*" || "-" == "$*" || "--" == "$*" ]]; then
no_args="true"