Skip to content

Commit 78d16d4

Browse files
committed
Remove the comma in “uptime”
1 parent 4aa4d8f commit 78d16d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runitctl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ case "$action" in
9696

9797
if echo "$status_output" | grep -q "^run:"; then
9898
pid=$(echo "$status_output" | awk '{print $4}' | tr -d '()')
99-
uptime=$(echo "$status_output" | awk '{print $5}')
99+
uptime=$(echo "$status_output" | awk '{print $5}' | tr -d ';')
100100
echo -e " Status : ${GREEN}● Running${RESET}"
101101
echo -e " PID : $pid"
102102
echo -e " Uptime : $uptime"

0 commit comments

Comments
 (0)