From 3028c274b5833371951f395734266394506cc73b Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Thu, 19 Jun 2025 19:49:33 -0400 Subject: [PATCH] ci: tee e2e logs to stdout --- ci/test-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test-e2e.sh b/ci/test-e2e.sh index 8051c37..c86100f 100755 --- a/ci/test-e2e.sh +++ b/ci/test-e2e.sh @@ -3,7 +3,7 @@ set -euo pipefail LOG_DIR="$(pwd)/ci-logs" mkdir -p "$LOG_DIR" -exec >"$LOG_DIR/run.log" 2>&1 +exec > >(tee "$LOG_DIR/run.log") 2>&1 # Install VoxVera if [ -n "${VOXVERA_BIN:-}" ]; then