Commit a4741ffe authored by Jack Jansen's avatar Jack Jansen

This can now run under unix-Python too. You have to pass the folder

to search on the command line in that case.
parent ac7cb054
......@@ -19,8 +19,12 @@ def bgenone(dirname, shortname):
def main():
success = []
failure = []
sys.path.insert(0, ':')
sys.path.insert(0, os.curdir)
if len(sys.argv) > 1:
srcdir = sys.argv[1]
else:
srcdir = os.path.join(os.path.join(sys.prefix, 'Mac'), 'Modules')
srcdir = os.path.abspath(srcdir)
contents = os.listdir(srcdir)
for name in contents:
moduledir = os.path.join(srcdir, name)
......
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