From 4450898d39451f159b1d9265af11b47c6f2c73e1 Mon Sep 17 00:00:00 2001 From: Robert Wilde Date: Thu, 19 Feb 2026 13:27:48 +0100 Subject: [PATCH 1/2] chore(e2e): add manual override for networking in Linux --- e2e-local.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/e2e-local.sh b/e2e-local.sh index 4d446250a..69d786ea5 100755 --- a/e2e-local.sh +++ b/e2e-local.sh @@ -36,9 +36,12 @@ DISPLAY=$LOCAL_ADDRESS:0 case "$OS" in Linux*) - LOCAL_ADDRESS=localhost - NETWORK_MODE=host - DISPLAY=$DISPLAY + if [ -z "$LOCAL_ADDRESS" ]; then + LOCAL_ADDRESS=localhost + fi + if [ -z "$NETWORK_MODE" ]; then + NETWORK_MODE=host + fi ;; MINGW*) CWD=$(cygpath -w $CWD) From c4be0e6669320ea14e4e74ee25bf2587fc229f3a Mon Sep 17 00:00:00 2001 From: Robert Wilde Date: Fri, 20 Feb 2026 15:31:50 +0100 Subject: [PATCH 2/2] chore(e2e): align with existing conventions --- e2e-local.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e-local.sh b/e2e-local.sh index 69d786ea5..347ccba65 100755 --- a/e2e-local.sh +++ b/e2e-local.sh @@ -36,10 +36,10 @@ DISPLAY=$LOCAL_ADDRESS:0 case "$OS" in Linux*) - if [ -z "$LOCAL_ADDRESS" ]; then + if [ x"$LOCAL_ADDRESS" = "x" ]; then LOCAL_ADDRESS=localhost fi - if [ -z "$NETWORK_MODE" ]; then + if [ x"$NETWORK_MODE" = "x" ]; then NETWORK_MODE=host fi ;;