]> granicus.if.org Git - python/commitdiff
Binhextree doesn't binhex anymore, it just copies the projects around. This
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 20 Aug 1998 14:51:12 +0000 (14:51 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 20 Aug 1998 14:51:12 +0000 (14:51 +0000)
does make the name a bit of a non-sequitur:-)

Mac/scripts/binhextree.py

index 5c9143cb39464b194c1a6be7e50e1770e5c5ac4a..1d6996e764f2d47d6e5e9af057fa7c4321aada13 100644 (file)
@@ -2,6 +2,8 @@
 # binhextree - Recursively descend a directory and
 # pack all resource files.
 #
+# Actually it doesn't binhex anymore, it only copies projects.
+#
 # Jack Jansen, CWI, August 1995.
 #
 
@@ -187,8 +189,8 @@ def copycwexpfile(path, name):
                macostools.copy(path, dstfile)  
 
 extensions = [
-       ('.rsrc', binhexit),
-       ('.gif', binhexit),
+##     ('.rsrc', binhexit),
+##     ('.gif', binhexit),
        ('.ยต', copycwproject),
        ('.prj', copycwproject),
        ('.prj.exp', copycwexpfile),
@@ -211,8 +213,8 @@ def dodir(name):
        TOP = name
        os.path.walk(name, walker, None)
        
-       for creator in project_files.keys():
-               hexbincwprojects(creator)
+##     for creator in project_files.keys():
+##             hexbincwprojects(creator)
        project_files = {}
                                
 def main():