From 6da1643cb73507b6a55ecc0cb55bbd28a216c1d6 Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Sat, 17 Jan 2026 07:52:47 -0500 Subject: [PATCH] fixup! more fixes to support container/root mount action --- tests/system-test-safety-check.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/system-test-safety-check.sh b/tests/system-test-safety-check.sh index 94e8713..3f5587a 100755 --- a/tests/system-test-safety-check.sh +++ b/tests/system-test-safety-check.sh @@ -26,6 +26,10 @@ GIT="git -c advice.defaultBranchName=false" tempdir=$(mktemp -d) trap 'rm -rf "$tempdir"' EXIT +# Isolate git config to prevent leaks from other tests +export GIT_CONFIG_GLOBAL="${tempdir}/gitconfig" +export GIT_CONFIG_SYSTEM="/dev/null" + print_info "Setting up test environment..." # Create a bare repo (simulates remote) -- 2.52.0