From bee189a5fcc64bfbb6910468acb0dbb62d608945 Mon Sep 17 00:00:00 2001 From: ikrong Date: Fri, 5 Jul 2024 22:29:15 +0800 Subject: [PATCH] fix --- exec.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec.sh b/exec.sh index c4d226a..09a0c14 100755 --- a/exec.sh +++ b/exec.sh @@ -417,7 +417,7 @@ function status() { if [ $duration -ge 120 ]; then local m=$((duration/60)) local s=$((duration%60)) - if [ $s -eq 0]; then + if [ $s -eq 0 ]; then duration="${m}min" else duration="${m}min${s}s"