Skip to content

Commit

Permalink
make sure parent exists
Browse files Browse the repository at this point in the history
  • Loading branch information
JarrettSJohnson committed May 11, 2024
1 parent f7bf044 commit 941602b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ def build_cmake(self, ext):
build_temp.mkdir(parents=True, exist_ok=True)
extdir = pathlib.Path(self.get_ext_fullpath(ext.name))

extdir.parent.mkdir(parents=True, exist_ok=True)

def concat_paths(paths):
return ''.join(path.replace('\\', '/') + ";" for path in paths)

Expand Down

0 comments on commit 941602b

Please sign in to comment.