diff options
author | Christopher Baines <mail@cbaines.net> | 2021-01-31 09:55:47 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-01-31 09:55:47 +0000 |
commit | e18deabf94d6274951e96c02338d824c4f495199 (patch) | |
tree | c4149adf246fb55ff832c17004a230c004dfb402 /scripts | |
parent | 21ff9aa32bc895ee84f0d68e5d2c12bcfd77ad33 (diff) | |
download | build-coordinator-e18deabf94d6274951e96c02338d824c4f495199.tar build-coordinator-e18deabf94d6274951e96c02338d824c4f495199.tar.gz |
Improve agent tags message
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/guix-build-coordinator.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/guix-build-coordinator.in b/scripts/guix-build-coordinator.in index 78a9885..6191c90 100644 --- a/scripts/guix-build-coordinator.in +++ b/scripts/guix-build-coordinator.in @@ -691,7 +691,9 @@ tags: (assq-ref opts 'coordinator) agent-id (list->vector new-tags)))) - (simple-format #t "changed tags to:\n") + (if (equal? initial-tags new-tags) + (simple-format #t "tags unchanged:\n") + (simple-format #t "changed tags to:\n")) (for-each (match-lambda ((('key . key) ('value . value)) |