Skip to content

Commit 52f4e9e

Browse files
Update utils.py
1 parent a3754e5 commit 52f4e9e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

build_tools/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ def join_path(cwd, *components):
77
print(pathlib.Path(cwd, *components).as_posix())
88
return pathlib.Path(cwd, *components).as_posix()
99

10-
cwd = os.path.dirname(os.path.dirname(__file__))
10+
raw_cwd = os.path.dirname(os.path.dirname(__file__))
11+
cwd = pathlib.Path(raw_cwd).as_posix()
1112
pmma_dir = join_path(cwd, "pmma")
1213
pmma_lib_dir = join_path(pmma_dir, "lib")
1314
temp_dir = join_path(cwd, "temporary")

0 commit comments

Comments
 (0)