Only try to compile lua files

This commit is contained in:
ollo 2016-12-30 13:39:22 +01:00
parent 687a2bbbb9
commit b80a604b46

View File

@ -17,10 +17,15 @@ function recompileAll()
if (string.find(k, ".lc", -3)) then
print ("Skipping " .. k)
elseif (string.find(blacklistfile, k) == nil) then
-- Only look at lua files
if (string.find(k, ".lua") ~= nil) then
print("Compiling and deleting " .. k)
node.compile(k)
-- remove the lua file
file.remove(k)
else
print("No code: " .. k)
end
end
end
end