From c59c79677469bc4836fdd97b2627dce5528a64a1 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 13 Mar 2025 17:35:03 +0100 Subject: [PATCH] Update npmplus-install.sh --- install/npmplus-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/npmplus-install.sh b/install/npmplus-install.sh index a71a8aa38..ed1a52b1c 100644 --- a/install/npmplus-install.sh +++ b/install/npmplus-install.sh @@ -93,7 +93,7 @@ msg_ok "Builded and started NPMplus" motd_ssh customize -msg_info "Retrieving Default Login (Patience)" +echo -e "Retrieving Default Login (Patience)" for i in {1..60}; do PASSWORD_LINE=$(docker logs "$CONTAINER_ID" 2>&1 | awk '/Creating a new user:/ {print; exit}') if [[ -n "$PASSWORD_LINE" ]]; then @@ -103,5 +103,5 @@ for i in {1..60}; do exit 0 fi sleep 2 - [[ $i -eq 60 ]] && msg_error "Failed to retrieve default login credentials." && exit 1 + [[ $i -eq 60 ]] && echo -e "Failed to retrieve default login credentials." && exit 1 done