We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3754e5 commit 52f4e9eCopy full SHA for 52f4e9e
1 file changed
build_tools/utils.py
@@ -7,7 +7,8 @@ def join_path(cwd, *components):
7
print(pathlib.Path(cwd, *components).as_posix())
8
return pathlib.Path(cwd, *components).as_posix()
9
10
-cwd = os.path.dirname(os.path.dirname(__file__))
+raw_cwd = os.path.dirname(os.path.dirname(__file__))
11
+cwd = pathlib.Path(raw_cwd).as_posix()
12
pmma_dir = join_path(cwd, "pmma")
13
pmma_lib_dir = join_path(pmma_dir, "lib")
14
temp_dir = join_path(cwd, "temporary")
0 commit comments