Fixed directory selection.
This commit is contained in:
parent
6543fcd0bd
commit
31d3294509
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@ import os
|
||||||
def compileDir(arg, directory, names):
|
def compileDir(arg, directory, names):
|
||||||
compileall.compile_dir(directory, force=1)
|
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 d -exec chmod gu+rx {} \;")
|
||||||
os.system("find . -type f -exec chmod gu+r {} \;")
|
os.system("find . -type f -exec chmod gu+r {} \;")
|
||||||
|
|
Loading…
Reference in a new issue