diff options
| author | Chen Yufei <[email protected]> | 2022-01-20 10:25:12 +0800 |
|---|---|---|
| committer | Chen Yufei <[email protected]> | 2022-01-20 10:26:07 +0800 |
| commit | 5c15a372aa3e63f117b8ddbe99cb4d6852430a83 (patch) | |
| tree | aac3d7505b17230783ccaded03559acaef5c9739 | |
| parent | 607a7db4f9daee501a70d7c976444cb5cc850530 (diff) | |
scan: output config with keys sorted.
| -rw-r--r-- | xmake/modules/private/action/require/scan.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/action/require/scan.lua b/xmake/modules/private/action/require/scan.lua index d098cc22b..2f990236c 100644 --- a/xmake/modules/private/action/require/scan.lua +++ b/xmake/modules/private/action/require/scan.lua @@ -61,7 +61,7 @@ function _scan_package(packagedir) end print("") if manifest and manifest.configs then - print(" -> %s", string.serialize(manifest.configs, true)) + print(" -> %s", string.serialize(manifest.configs, {orderkeys = true, indent = false, strip = true})) end end end |
