2
0
Fork 0

sh.zio.notify: handle extreme edge-case

main
Ducky 2024-04-02 01:06:45 +01:00
parent d455e58b1a
commit c7d32b84a8
1 changed files with 5 additions and 1 deletions

View File

@ -322,7 +322,11 @@ function print_time() {
[[ $m != "0" ]] && output+=" $m $m_string"
[[ $s != "0" ]] && output+=" $s $s_string"
echo $output
if [[ "$output" == "" ]]; then
echo "0 seconds"
else
echo $output
fi
}
function start_service() {