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

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'.
parent 53fcecd2
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
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