2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/guix-cuirass.git synced 2023-12-14 06:03:04 +01:00

base: Explicitly enable #:print-build-trace.

This is purely "defensive programming" since the default value for
'print-build-trace' is currently #t.

* src/cuirass/base.scm (with-store): Pass #:print-build-trace to
'set-build-options'.
This commit is contained in:
Ludovic Courtès 2018-02-08 11:47:05 +01:00
parent 53fcecd25f
commit 0ff3c23274

View file

@ -69,11 +69,13 @@
(let* ((store (open-connection))
(result (begin
;; Always set #:keep-going? so we don't stop on the first
;; build failure.
;; build failure. Set #:print-build-trace explicitly to
;; make sure 'process-build-log' sees build events.
(set-build-options store
#:use-substitutes? (%use-substitutes?)
#:fallback? (%fallback?)
#:keep-going? #t)
#:keep-going? #t
#:print-build-trace #t)
exp ...)))
(close-connection store)
result))