Fix compileall bug.

This commit is contained in:
Anna Rose 2021-08-01 21:31:39 -04:00
parent c3e78c5356
commit 47c37558a9

View File

@ -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).
}