Kaydet (Commit) c590095a authored tarafından Jack Jansen's avatar Jack Jansen

Binhextree doesn't binhex anymore, it just copies the projects around. This

does make the name a bit of a non-sequitur:-)
üst 158d5b5a
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
# binhextree - Recursively descend a directory and # binhextree - Recursively descend a directory and
# pack all resource files. # pack all resource files.
# #
# Actually it doesn't binhex anymore, it only copies projects.
#
# Jack Jansen, CWI, August 1995. # Jack Jansen, CWI, August 1995.
# #
...@@ -187,8 +189,8 @@ def copycwexpfile(path, name): ...@@ -187,8 +189,8 @@ def copycwexpfile(path, name):
macostools.copy(path, dstfile) macostools.copy(path, dstfile)
extensions = [ extensions = [
('.rsrc', binhexit), ## ('.rsrc', binhexit),
('.gif', binhexit), ## ('.gif', binhexit),
('.', copycwproject), ('.', copycwproject),
('.prj', copycwproject), ('.prj', copycwproject),
('.prj.exp', copycwexpfile), ('.prj.exp', copycwexpfile),
...@@ -211,8 +213,8 @@ def dodir(name): ...@@ -211,8 +213,8 @@ def dodir(name):
TOP = name TOP = name
os.path.walk(name, walker, None) os.path.walk(name, walker, None)
for creator in project_files.keys(): ## for creator in project_files.keys():
hexbincwprojects(creator) ## hexbincwprojects(creator)
project_files = {} project_files = {}
def main(): def main():
......
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