修复cron id获取

This commit is contained in:
hanhh
2021-05-24 20:52:53 +08:00
parent 91e4905a3f
commit 92056d66b5
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -99,9 +99,9 @@ update_cron_command_api() {
code=$(echo $api | jq -r .code)
message=$(echo $api | jq -r .message)
if [[ $code == 200 ]]; then
echo -e "$name -> 更新成功"
echo -e "$command -> 更新成功"
else
echo -e "$name -> 更新失败(${message})"
echo -e "$command -> 更新失败(${message})"
fi
}