From e135998b7a3c71c1b13235b0183cd1d324f774d8 Mon Sep 17 00:00:00 2001 From: Gamer3514 Date: Thu, 19 Sep 2024 17:49:29 +0100 Subject: [PATCH] Update entrypoint.sh --- nodejs/entrypoint.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nodejs/entrypoint.sh b/nodejs/entrypoint.sh index 60c227926..caf13e4bc 100644 --- a/nodejs/entrypoint.sh +++ b/nodejs/entrypoint.sh @@ -10,7 +10,19 @@ node -v # Replace Startup Variables MODIFIED_STARTUP=$(echo -e ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g') + +# Print the modified startup command echo ":/home/container$ ${MODIFIED_STARTUP}" +# Donation Message +echo -e "\e[32m" # Set text to green +echo "##############################################" +echo "# #" +echo "# Please consider donating to Silly Dev! #" +echo "# https://bit.ly/4e3XUce #" +echo "# #" +echo "##############################################" +echo -e "\e[0m" # Reset text color to default + # Run the Server eval ${MODIFIED_STARTUP}