diff options
| author | ruki <[email protected]> | 2024-01-23 22:43:58 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-01-25 12:09:58 +0800 |
| commit | a053cf76793f0b0ce3da1d709a0d10db4ec45a30 (patch) | |
| tree | 104232db560e23810e57f78722871e44306a5e13 /xmake/modules/private/action/require/impl/remove_packages.lua | |
| parent | 0b4aa5644e51a62aa69e8d41f81b48629910a5c2 (diff) | |
improve package runtime type
Diffstat (limited to 'xmake/modules/private/action/require/impl/remove_packages.lua')
| -rw-r--r-- | xmake/modules/private/action/require/impl/remove_packages.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/action/require/impl/remove_packages.lua b/xmake/modules/private/action/require/impl/remove_packages.lua index 1a5e99f83..3dcfeecf9 100644 --- a/xmake/modules/private/action/require/impl/remove_packages.lua +++ b/xmake/modules/private/action/require/impl/remove_packages.lua @@ -33,7 +33,7 @@ function _get_package_configs_str(manifest_file) if type(v) == "boolean" then table.insert(configs, k .. ":" .. (v and "y" or "n")) else - table.insert(configs, k .. ":" .. v) + table.insert(configs, k .. ":" .. string.serialize(v, {strip = true, indent = false})) end end local configs_str = #configs > 0 and "[" .. table.concat(configs, ", ") .. "]" or "" |
