From 3012a295e3d5e22a884d434555c8784832ac68f6 Mon Sep 17 00:00:00 2001 From: lou Date: Tue, 15 Oct 2024 17:14:05 -0400 Subject: [PATCH] add done status for deleting/creating public/src dirs --- manage | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manage b/manage index c7ce8b1..5acb7c2 100755 --- a/manage +++ b/manage @@ -117,6 +117,8 @@ function check_dirs() { done if [ "$created_count" -gt 0 ]; then echo -e "${COLOR_GREEN}Done.${COLOR_RESET}" + else + echo -e "${COLOR_GREEN}Done.${COLOR_RESET}" fi elif [ "$action" == "delete" ]; then @@ -127,6 +129,8 @@ function check_dirs() { fi if [ "$deleted_count" -gt 0 ]; then echo -e "${COLOR_GREEN}Done.${COLOR_RESET}" + else + echo -e "${COLOR_GREEN}Done.${COLOR_RESET}" fi else echo -e "${COLOR_RED}Invalid action: $action. Use 'create' or 'delete'.${COLOR_RESET}"