Skip to content
Snippets Groups Projects
Commit e5220dbe authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

base: Log the number of builds performed.

* src/cuirass/base.scm (spawn-builds): Log the number of builds
performed, not the number of remaining builds.
parent a3025cad
No related branches found
No related tags found
No related merge requests found
......@@ -370,7 +370,7 @@ MAX-BATCH-SIZE items."
(nix-protocol-error-message c)
(nix-protocol-error-status c))))
(log-message "building batch of ~a jobs (~a/~a)"
max-batch-size count total)
max-batch-size (- total count) total)
(let-values (((port finish)
(build-derivations& store
(map (lambda (job)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment