diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-23 22:30:05 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-23 23:35:12 +0100 |
commit | e6b065b299e1819cd35643043a63e2f1ff27418c (patch) | |
tree | 32e46469f571fc00ac232f58fc80bdc4a59e3055 /guix | |
parent | ba5e89be8cfa3428d7b41954df8af792986eb5ee (diff) |
ui: Don't report "build failed:" for daemon error messages.
Until now we'd get things like:
guix build: error: build failed: build of `/gnu/store/….drv' failed
or:
$ guix gc -d /sdf
guix gc: error: build failed: path `/sdf' is not in the store
which is kinda ridiculous.
* guix/ui.scm (call-with-error-handling): Remove "build failed:" prefix
for 'store-protocol-error?'.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/ui.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index 9ff56ea85c..9eab4ba3f7 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -690,7 +690,7 @@ or remove one of them from the profile.") (strerror (store-connection-error-code c)))) ((store-protocol-error? c) ;; FIXME: Server-provided error messages aren't i18n'd. - (leave (G_ "build failed: ~a~%") + (leave (G_ "~a~%") (store-protocol-error-message c))) ((derivation-missing-output-error? c) (leave (G_ "reference to invalid output '~a' of derivation '~a'~%") |