1
0
Fork 0

fix the issues xoft pointed out

This commit is contained in:
Alexander Harkness 2013-12-20 16:38:10 +00:00
parent 837bbf0de3
commit d31fd1528b
1 changed files with 6 additions and 7 deletions

View File

@ -230,14 +230,13 @@ end
function DumpAPIHtml()
LOG("Moving static files.");
local localFolder = g_Plugin:GetLocalFolder();
for k, v in cFile:GetFolderContents("Static") do
cFile:Copy(localFolder .. "/Static/" .. v, localFolder .. "/API/" .. v);
end
LOG("Dumping all available functions and constants to API subfolder...");
LOG("Moving static files..");
local localFolder = ipairs(g_Plugin:GetLocalFolder());
for k, v in cFile:GetFolderContents("Static") do
cFile:Copy(localFolder .. "/Static/" .. v, "API/" .. v);
end
LOG("Creating API tables...");
local API, Globals = CreateAPITables();