From 380c19d72201e712da62a84121124b54b8e59bd0 Mon Sep 17 00:00:00 2001 From: StaleLoafOfBread <45444205+StaleLoafOfBread@users.noreply.github.com> Date: Mon, 4 Mar 2024 19:35:59 -0500 Subject: [PATCH] fix(typo): security thread -> security threat --- includes/security.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/security.sh b/includes/security.sh index 7265a74..ebc3d02 100644 --- a/includes/security.sh +++ b/includes/security.sh @@ -5,11 +5,11 @@ source /includes/colors.sh function check_for_default_credentials() { e "> Checking for existence of default credentials" if [[ -n $ADMIN_PASSWORD ]] && [[ $ADMIN_PASSWORD == "adminPasswordHere" ]]; then - ee ">>> Security thread detected: Please change the default admin password. Aborting server start ..." + ee ">>> Security threat detected: Please change the default admin password. Aborting server start ..." exit 1 fi if [[ -n $SERVER_PASSWORD ]] && [[ $SERVER_PASSWORD == "serverPasswordHere" ]]; then - ee ">>> Security thread detected: Please change the default server password. Aborting server start ..." + ee ">>> Security threat detected: Please change the default server password. Aborting server start ..." exit 1 fi es "> No default passwords found"