also sort table by ID

This commit is contained in:
Dylan K. Taylor 2025-02-18 15:34:20 +00:00
parent c876253f76
commit a08b06d322
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -901,6 +901,7 @@ function cmdDumpTable(array $argv) : int{
}
$table = loadUpgradeTableFromFile($tableFile, reverse: false);
ksort($table, SORT_STRING);
foreach(Utils::stringifyKeys($table) as $oldName => $mappings){
fwrite($output, "---------- MAPPING LIST: $oldName ----------\n");