summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-08-31 15:05:21 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-08-31 15:11:17 +0900
commit72a2ee2005cff2ce61157695bfda7e9fad167cad (patch)
treef96ae5fb6f4b97404695fb6da2d8f27c692c56d9
parentbc013106720e70fb61b298ec057fcdfe425b98db (diff)
teams/gnome: Sort update specs.
* etc/teams/gnome/gnome-core-refresh: Sort update specs.
-rwxr-xr-xetc/teams/gnome/gnome-core-refresh7
1 files changed, 4 insertions, 3 deletions
diff --git a/etc/teams/gnome/gnome-core-refresh b/etc/teams/gnome/gnome-core-refresh
index 21a801a2b7b..ed4f812c902 100755
--- a/etc/teams/gnome/gnome-core-refresh
+++ b/etc/teams/gnome/gnome-core-refresh
@@ -1,7 +1,7 @@
1#!/usr/bin/env -S guix repl -- 1#!/usr/bin/env -S guix repl --
2!# ;-*- mode: scheme; -*- 2!# ;-*- mode: scheme; -*-
3;;; GNU Guix --- Functional package management for GNU 3;;; GNU Guix --- Functional package management for GNU
4;;; Copyright © 2025 Maxim Cournoyer <maxim@guixotic.coop> 4;;; Copyright © 2025-2026 Maxim Cournoyer <maxim@guixotic.coop>
5;;; 5;;;
6;;; This file is part of GNU Guix. 6;;; This file is part of GNU Guix.
7;;; 7;;;
@@ -135,5 +135,6 @@ refresh' can automatically find the newest compatible version."
135 name version)))) 135 name version))))
136 136
137(apply guix-refresh (append (cdr (command-line)) 137(apply guix-refresh (append (cdr (command-line))
138 (releng-tree->update-specs 138 (sort (releng-tree->update-specs
139 (parse-releng (fetch-releng-content))))) 139 (parse-releng (fetch-releng-content)))
140 string>)))