From e5acf206f529fc2cabb46afcd8f9e3d487dbaa1a Mon Sep 17 00:00:00 2001 From: midoks Date: Sat, 15 Jul 2023 20:43:13 +0800 Subject: [PATCH] Update cli.sh --- cli.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli.sh b/cli.sh index 841e1fccc..68d639d35 100755 --- a/cli.sh +++ b/cli.sh @@ -16,7 +16,7 @@ mw_start_task() { isStart=$(ps aux |grep 'task.py'|grep -v grep|awk '{print $2}') if [ "$isStart" == '' ];then - echo -e "Starting mw-tasks... \c" + echo -e "starting mw-tasks... \c" cd $DIR && python3 task.py >> ${DIR}/logs/task.log 2>&1 & sleep 0.3 isStart=$(ps aux |grep 'task.py'|grep -v grep|awk '{print $2}') @@ -30,7 +30,7 @@ mw_start_task() fi echo -e "\033[32mdone\033[0m" else - echo "Starting mw-tasks... mw-tasks (pid $(echo $isStart)) already running" + echo "starting mw-tasks... mw-tasks (pid $(echo $isStart)) already running" fi }