diff options
author | Christopher Baines <mail@cbaines.net> | 2020-09-27 15:46:01 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-09-27 15:46:01 +0100 |
commit | 1f43eb264a64b6c399b67a8835dab2062a20797e (patch) | |
tree | 1918183841d2e8b95ef2fa516a1d73bcc511d1fd | |
parent | ff7861dffb3d0b05f24e19ba01b91963a184351b (diff) | |
download | build-coordinator-1f43eb264a64b6c399b67a8835dab2062a20797e.tar build-coordinator-1f43eb264a64b6c399b67a8835dab2062a20797e.tar.gz |
Reverse systems-and-targets in the queue builds script
So that the order of processing reflects the order of command line arguments.
-rw-r--r-- | scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in b/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in index 1357cd7..4eac711 100644 --- a/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in +++ b/scripts/guix-build-coordinator-queue-builds-from-guix-data-service.in @@ -244,7 +244,8 @@ %option-defaults (cdr (program-arguments)))) (systems-and-targets - (assq-ref opts 'systems-and-targets)) + (reverse + (assq-ref opts 'systems-and-targets))) (guix-data-service (assq-ref opts 'guix-data-service)) (processed-commits-file |