ci: remove exact check for session name

This commit is contained in:
Aaron Bieber 2023-01-29 10:02:17 -07:00
parent 913c8bbbd7
commit b76f06f48c
No known key found for this signature in database

4
ci
View File

@ -34,6 +34,6 @@ if [ "$CMD" = "run" ]; then
nix flake check || handle_check_fail
else
echo 'running "./ci run"'
tmux select-window -t "=${NAME}:0"
tmux send-keys -t "=${NAME}:0" "./ci run" ENTER
tmux select-window -t "${NAME}:0"
tmux send-keys -t "${NAME}:0" "./ci run" ENTER
fi