ci: tee e2e logs to stdout

This commit is contained in:
thePR0M3TH3AN
2025-06-19 19:49:33 -04:00
parent 0c190a82dd
commit 3028c274b5

View File

@@ -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