We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dc526a commit c59c796Copy full SHA for c59c796
install/npmplus-install.sh
@@ -93,7 +93,7 @@ msg_ok "Builded and started NPMplus"
93
motd_ssh
94
customize
95
96
-msg_info "Retrieving Default Login (Patience)"
+echo -e "Retrieving Default Login (Patience)"
97
for i in {1..60}; do
98
PASSWORD_LINE=$(docker logs "$CONTAINER_ID" 2>&1 | awk '/Creating a new user:/ {print; exit}')
99
if [[ -n "$PASSWORD_LINE" ]]; then
@@ -103,5 +103,5 @@ for i in {1..60}; do
103
exit 0
104
fi
105
sleep 2
106
- [[ $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
107
done
0 commit comments