Description:
Fix Windows paths.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r39:38061080107d -

@@ -83,7 +83,8
83 for (dirpath, _dirname, files) in os.walk(sourcedir):
83 for (dirpath, _dirname, files) in os.walk(sourcedir):
84 for file in files:
84 for file in files:
85 source = pathlib.Path(dirpath) / file
85 source = pathlib.Path(dirpath) / file
86 f.write(source)
86 print(source, destination )
87 f.write(source, os.path.relpath(sourcedir, dirpath))
87
88
88
89
89 def make_macos(suffix="new"):
90 def make_macos(suffix="new"):
You need to be logged in to leave comments. Login now