Fix compileall bug.
This commit is contained in:
parent
c3e78c5356
commit
47c37558a9
1 changed files with 5 additions and 3 deletions
|
@ -18,9 +18,11 @@ function compileHere {
|
|||
list files in fileList.
|
||||
|
||||
for f in fileList {
|
||||
if f:ISFILE and f:EXTENSION = "ks" {
|
||||
if f:ISFILE {
|
||||
if f:EXTENSION = "ks" {
|
||||
print "Compiling '" + f:NAME + "'.".
|
||||
compile f.
|
||||
}
|
||||
} else if f:NAME[0] <> "." {
|
||||
compileDir(f).
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue