Skip to content

Commit

Permalink
Fix mkdir
Browse files Browse the repository at this point in the history
  • Loading branch information
lexiforest committed Oct 21, 2024
1 parent bbc6ae3 commit 52ae401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def detect_arch():
global tmpdir
if "CI" in os.environ:
tmpdir = "./tmplibdir"
os.mkdir(tmpdir)
os.makedirs(tmpdir, exist_ok=True)
arch["libdir"] = tmpdir
else:
tmpdir = tempfile.TemporaryDirectory()
Expand Down

0 comments on commit 52ae401

Please sign in to comment.