fix(#827): add exist_ok=True to probe-3 fixture env mkdir (L709) — bounded repair
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user