From 18fb7c0f3078216bf4fc865d86b3be76ddc68414 Mon Sep 17 00:00:00 2001 From: zimoun Date: Thu, 20 Oct 2022 15:28:13 +0200 Subject: [PATCH] etc: teams: List teams sorted by id. * etc/teams.scm.in (list-teams): Sort teams by id. Signed-off-by: Mathieu Othacehe --- etc/teams.scm.in | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/etc/teams.scm.in b/etc/teams.scm.in index f3f33aae08..f74acadc01 100644 --- a/etc/teams.scm.in +++ b/etc/teams.scm.in @@ -538,8 +538,8 @@ (define (list-teams) "Print all teams, their scope and their members." (define port* (current-output-port)) (define width* (%text-width)) - (hash-for-each - (lambda (key team) + (for-each + (lambda (team) (format port* "\ id: ~a @@ -560,7 +560,11 @@ (define width* (%text-width)) (scope (format #f "scope: ~{~s ~}~%" scope)))) (list-members team port* "+ ") (newline)) - %teams)) + (sort + (hash-map->list (lambda (key value) value) %teams) + (lambda (team1 team2) + (stringstring (team-id team1)) + (symbol->string (team-id team2))))))) (define (diff-revisions rev-start rev-end)