Skip to content

Commit d306357

Browse files
committed
wip
1 parent ed6d371 commit d306357

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/release.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,8 @@ def build_vendored_openssl(
334334
"""
335335
)
336336

337-
with TemporaryDirectory(dir=ROOT / "target") as tmp_dir_str:
337+
# Use a system temp dir so Cargo doesn't treat this helper crate as part of the workspace.
338+
with TemporaryDirectory() as tmp_dir_str:
338339
tmp_dir = Path(tmp_dir_str)
339340
(tmp_dir / "lib.rs").write_text("pub fn _vendored_openssl_marker() {}\n")
340341
(tmp_dir / "Cargo.toml").write_text(helper_toml)

0 commit comments

Comments
 (0)