Fixed directory selection.

This commit is contained in:
Bradley M. Kuhn 2010-10-05 16:44:22 -04:00
parent 6543fcd0bd
commit 31d3294509

View file

@ -8,7 +8,8 @@ import os
def compileDir(arg, directory, names):
compileall.compile_dir(directory, force=1)
os.path.walk(".", compileDir, "")
os.path.walk("podjango", compileDir, "")
compileall.compile_dir(".", force=1)
os.system("find . -type d -exec chmod gu+rx {} \;")
os.system("find . -type f -exec chmod gu+r {} \;")