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