Merge pull request #54 from PR0M3TH3AN/codex/modify-ci/test-e2e.sh-for-live-output-and-logging

Fix e2e script logging
This commit is contained in:
thePR0M3TH3AN
2025-06-19 19:49:46 -04:00
committed by GitHub

View File

@@ -3,7 +3,7 @@ set -euo pipefail
LOG_DIR="$(pwd)/ci-logs" LOG_DIR="$(pwd)/ci-logs"
mkdir -p "$LOG_DIR" mkdir -p "$LOG_DIR"
exec >"$LOG_DIR/run.log" 2>&1 exec > >(tee "$LOG_DIR/run.log") 2>&1
# Install VoxVera # Install VoxVera
if [ -n "${VOXVERA_BIN:-}" ]; then if [ -n "${VOXVERA_BIN:-}" ]; then