Fix compileall bug.
This commit is contained in:
parent
c3e78c5356
commit
47c37558a9
|
@ -18,9 +18,11 @@ function compileHere {
|
|||
list files in fileList.
|
||||
|
||||
for f in fileList {
|
||||
if f:ISFILE and f:EXTENSION = "ks" {
|
||||
print "Compiling '" + f:NAME + "'.".
|
||||
compile f.
|
||||
if f:ISFILE {
|
||||
if f:EXTENSION = "ks" {
|
||||
print "Compiling '" + f:NAME + "'.".
|
||||
compile f.
|
||||
}
|
||||
} else if f:NAME[0] <> "." {
|
||||
compileDir(f).
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user