diff options
| -rw-r--r-- | xmake/actions/config/configfiles.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmake/actions/config/configfiles.lua b/xmake/actions/config/configfiles.lua index 85ee477fb..f21e4684b 100644 --- a/xmake/actions/config/configfiles.lua +++ b/xmake/actions/config/configfiles.lua @@ -226,6 +226,9 @@ function _generate_configfile(srcfile, dstfile, fileinfo, targets) assert(value ~= nil, "cannot get variable(%s) in %s.", variable, srcfile) end dprint(" > replace %s -> %s", variable, value) + if type(value) == "table" then + dprint("invalid variable value", value) + end return value end) |
