We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed6d371 commit d306357Copy full SHA for d306357
scripts/release.py
@@ -334,7 +334,8 @@ def build_vendored_openssl(
334
"""
335
)
336
337
- with TemporaryDirectory(dir=ROOT / "target") as tmp_dir_str:
+ # 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:
339
tmp_dir = Path(tmp_dir_str)
340
(tmp_dir / "lib.rs").write_text("pub fn _vendored_openssl_marker() {}\n")
341
(tmp_dir / "Cargo.toml").write_text(helper_toml)
0 commit comments