From 660c1b774d7396b77a4a770c09347adf30544998 Mon Sep 17 00:00:00 2001 From: lou Date: Tue, 15 Oct 2024 17:06:26 -0400 Subject: [PATCH] add done status for building --- manage | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manage b/manage index 511510f..4189892 100755 --- a/manage +++ b/manage @@ -194,6 +194,8 @@ function restart_server() { if ! npm run build > node.log 2>&1; then echo -e "${COLOR_RED}Build failed. Please check for errors above.${COLOR_RESET}" exit 1 + else + echo -e "${COLOR_GREEN}Done!${COLOR_RESET}" fi if [ -f './public/css/base.css' ]; then @@ -251,6 +253,8 @@ function start_server() { if ! npm run build > node.log 2>&1; then echo -e "${COLOR_RED}Build failed. Please check for errors above.${COLOR_RESET}" exit 1 + else + echo -e "${COLOR_GREEN}Done!${COLOR_RESET}" fi if [ -f './public/css/base.css' ]; then