Skip to content

Commit

Permalink
reverse order of split vs non-split to get nicer log output
Browse files Browse the repository at this point in the history
  • Loading branch information
alexharri committed May 18, 2024
1 parent f67cc15 commit af2d56b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/group-addresses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ async function main() {
const addressSet = new Set(addresses);

const configs = [
{ split: true, postfix: "split-dash" },
{ split: false, postfix: "with-dash" },
{ split: true, postfix: "split-dash" },
];
for (const { split, postfix } of configs) {
const groups: Record<string, DeclinedName[]> = {};
Expand Down

0 comments on commit af2d56b

Please sign in to comment.