From 617cf7e5b4946e346a78a47d8d86782c86c6b9d0 Mon Sep 17 00:00:00 2001 From: whyour Date: Tue, 9 Jun 2026 00:48:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20stop=20emoji?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shell/share.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/share.sh b/shell/share.sh index 881548fb..42f1254e 100755 --- a/shell/share.sh +++ b/shell/share.sh @@ -401,11 +401,11 @@ handle_task_end() { record_cron_stat "$ID" "${exit_code:-0}" "$diff_time" if [[ "${MANUAL:=}" == "true" ]]; then - echo -e "\n## 已停止 ⏹... $end_time 耗时 $diff_time 秒${error_message:=}     " + echo -e "\n## 已停止 🛑... $end_time 耗时 $diff_time 秒${error_message:=}     " elif [[ $exit_code -eq 0 ]]; then echo -e "\n## 完成 ✅... $end_time 耗时 $diff_time 秒${error_message:=}     " else - echo -e "\n## 失败 ❌ (退出码 ${exit_code})... $end_time 耗时 $diff_time 秒${error_message:=}     " + echo -e "\n## 失败 ❌(退出码 ${exit_code})... $end_time 耗时 $diff_time 秒${error_message:=}     " fi }