diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2019-01-21 17:41:11 +0100 | 
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-21 23:09:55 +0100 | 
| commit | f9e8a12379c6fefc9e5c3c7fc3926599bbefc013 (patch) | |
| tree | 471d175466beecb53c7e0c8398dc7a85a17fc0a5 /guix/scripts/offload.scm | |
| parent | de9fbe9cdcf5f8deb08becfc54b523084fd67bda (diff) | |
store: Rename '&nix-error' to '&store-error'.
* guix/store.scm (&nix-error): Rename to...
(&store-error): ... this, and adjust users.
(&nix-connection-error): Rename to...
(&store-connection-error): ... this, and adjust users.
(&nix-protocol-error): Rename to...
(&store-protocol-error): ... this, adjust users.
(&nix-error, &nix-connection-error, &nix-protocol-error): Define these
condition types and their getters as deprecrated aliases.
* build-aux/run-system-tests.scm, guix/derivations.scm,
guix/grafts.scm, guix/scripts/challenge.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/scripts/offload.scm, guix/serialization.scm,
guix/ssh.scm, guix/tests.scm, guix/ui.scm,
tests/derivations.scm, tests/gexp.scm, tests/guix-daemon.sh,
tests/packages.scm, tests/store.scm, doc/guix.texi: Adjust to use the
new names.
Diffstat (limited to 'guix/scripts/offload.scm')
| -rw-r--r-- | guix/scripts/offload.scm | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/guix/scripts/offload.scm b/guix/scripts/offload.scm index 30fe69ad6d..2116b38425 100644 --- a/guix/scripts/offload.scm +++ b/guix/scripts/offload.scm @@ -1,5 +1,5 @@  ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>  ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>  ;;;  ;;; This file is part of GNU Guix. @@ -358,12 +358,12 @@ MACHINE."    (format (current-error-port) "@ build-remote ~a ~a~%"            (derivation-file-name drv) (build-machine-name machine)) -  (guard (c ((nix-protocol-error? c) +  (guard (c ((store-protocol-error? c)               (format (current-error-port)                       (G_ "derivation '~a' offloaded to '~a' failed: ~a~%")                       (derivation-file-name drv)                       (build-machine-name machine) -                     (nix-protocol-error-message c)) +                     (store-protocol-error-message c))               (let* ((inferior (false-if-exception (remote-inferior session)))                      (space (false-if-exception                              (node-free-disk-space inferior)))) | 
