diff options
| -rw-r--r-- | xmake/core/base/interpreter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/interpreter.lua b/xmake/core/base/interpreter.lua index 543be957f..02fcfe8da 100644 --- a/xmake/core/base/interpreter.lua +++ b/xmake/core/base/interpreter.lua @@ -453,7 +453,7 @@ function interpreter:_filter(values) for _, v in ipairs(value) do if type(v) == "string" then table.insert(values, filter:handle(v)) - elseif type(value) == "table" then + elseif type(v) == "table" then table.insert(values, self:_filter(v)) else table.insert(values, v) |
