Commit 297d7dd2 authored by Jack Jansen's avatar Jack Jansen

Keep the folder structure in Mac:mwerks:projects similar to the

toplevel build folder structure.
parent 612db8f6
...@@ -117,7 +117,7 @@ def copycwproject(path, name): ...@@ -117,7 +117,7 @@ def copycwproject(path, name):
print dstdir print dstdir
print 'No CW-project dir, skip', name print 'No CW-project dir, skip', name
return return
dstfile = os.path.join(dstdir, name) dstfile = os.path.join(dstdir, os.path.join(srcdir, name))
else: else:
if path[-2:] != '.': if path[-2:] != '.':
return return
...@@ -155,7 +155,7 @@ def copycwexpfile(path, name): ...@@ -155,7 +155,7 @@ def copycwexpfile(path, name):
print dstdir print dstdir
print 'No CW-project dir, skip', name print 'No CW-project dir, skip', name
return return
dstfile = os.path.join(dstdir, name) dstfile = os.path.join(dstdir, os.path.join(srcdir, name))
else: else:
if path[-6:] != '..exp': if path[-6:] != '..exp':
return return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment