[*] minor formatting change

This commit is contained in:
Reece Wilson 2022-01-18 21:06:27 +00:00
parent 937f38acfb
commit 330b52364f
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,6 @@ local function start()
end
local function startProject()
--_G.architecture("x86_64")
auFilterForConfigPlatforms(function(config, platform)
if (not _auExtendedArch) then
local architecture = _auCurrentArchs[1]

View File

@ -85,13 +85,14 @@ end
_G.filterStack = {}
function auFilter(filter)
local tbl = _G.filterStack;
if (not filter or #filter == 0) then
table.remove(tbl, #tbl)
else
table.insert(tbl, filter)
end
local filterArray = {}
auForEach(tbl, function(val)
filterArray = auMergeArray(filterArray, val)
end)