Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Reverse the list for more natural look
Modules starting with A will be on the first page.
  • Loading branch information
AlexDaniel committed Aug 1, 2018
1 parent f36e59c commit 460cae4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion populate-issues.p6
Expand Up @@ -18,7 +18,8 @@ sub body-template($module) {
}

multi MAIN(I know what I'm doing, $token, *@dbs) {
for red-modules(@dbs).keys.sort[^20] {
# ⚠ TODO ↓ change before the final run
for red-modules(@dbs).keys.sort.reverse[^20] {
submit-issue :$token,
title => $_,
body => body-template $_,;
Expand Down

0 comments on commit 460cae4

Please sign in to comment.