diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-03-26 16:27:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-03-26 16:27:46 +0100 |
commit | 07fb21b231b8d86cc17beff64111759b972ffcac (patch) | |
tree | 4c2bb5f003a07f78ef31739cdf693a867fa39650 | |
parent | 6c41cce0bee19b3a18edc82b17d5a8a110971ac6 (diff) | |
download | guix-07fb21b231b8d86cc17beff64111759b972ffcac.tar guix-07fb21b231b8d86cc17beff64111759b972ffcac.tar.gz |
offload: Remove erroneous 'close-pipe' call.
* guix/scripts/offload.scm (send-files): Remove 'close-pipe' call from
'guard' handler ('pipe' here referred to Guile's 'pipe' procedure.)
-rw-r--r-- | guix/scripts/offload.scm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/guix/scripts/offload.scm b/guix/scripts/offload.scm index 6f04cf3b8a..d06dd744a8 100644 --- a/guix/scripts/offload.scm +++ b/guix/scripts/offload.scm @@ -376,7 +376,6 @@ success, #f otherwise." (warning (_ "failed to export files for '~a': ~s~%") (build-machine-name machine) c) - (false-if-exception (close-pipe pipe)) #f)) ;; Compute the subset of FILES missing on MACHINE, and send them in |