ci: fix grep flag

This commit is contained in:
Aaron Bieber 2023-01-29 08:30:43 -07:00
parent bd6f8a5da0
commit 7db02cd705
No known key found for this signature in database

2
ci
View File

@ -7,7 +7,7 @@ set -eu
NAME="CI"
SESS="-s ${NAME}"
if tmux ls | grep =q "^${NAME}:"; then
if tmux ls | grep -q "^${NAME}:"; then
tmux -u2 at -t "${NAME}"
else
tmux -2 new-session -d ${SESS}