fix(#827): add exist_ok=True to probe-3 fixture env mkdir (L709) — bounded repair

This commit is contained in:
ms-lead-reviewer
2026-07-19 13:15:24 -05:00
parent 61126c7473
commit 93a5fd018d

View File

@@ -706,7 +706,7 @@ def isolated_environment(
source = source_agent / name
target = target_agent / name
if source.is_file():
target.parent.mkdir(parents=True, mode=0o700)
target.parent.mkdir(parents=True, mode=0o700, exist_ok=True)
shutil.copy2(source, target)
environment = {