diff --git a/Tools/autotest/run_in_terminal_window.sh b/Tools/autotest/run_in_terminal_window.sh index ac5c8e792d..343f745b15 100755 --- a/Tools/autotest/run_in_terminal_window.sh +++ b/Tools/autotest/run_in_terminal_window.sh @@ -44,6 +44,9 @@ elif [ -n "$DISPLAY" -a -n "$(which gnome-terminal)" ]; then elif [ -n "$STY" ]; then # We are running inside of screen, try to start it there screen -X screen -t "$name" bash -c "cd $PWD; $*" +elif [ -n "$ZELLIJ" ]; then + # Create a new pane to run + zellij run -n "$name" -- "$1" "${@:2}" else filename="/tmp/$name.log" echo "RiTW: Window access not found, logging to $filename"