Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Wed Jul 8 16:19:23 UTC 2026 on atb-devel-224
TMUX_CMD=tmate
fi
- $TMUX_CMD new-window -n test:$SERVERNAME "bash $basedir/$SERVERNAME.launch"
+ # tmux forbids . and : in window names
+ WINDOWNAME=test:"$SERVERNAME"
+ WINDOWNAME=${WINDOWNAME//\./#}
+ WINDOWNAME=${WINDOWNAME//\:/#}
+
+ $TMUX_CMD new-window -n "$WINDOWNAME" "bash $basedir/$SERVERNAME.launch"
# tmux seems to lag a bit for new sessions. Don't create them too
# quickly one after another