summaryrefslogtreecommitdiff
path: root/guix/remote.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix/remote.scm')
-rw-r--r--guix/remote.scm11
1 files changed, 1 insertions, 10 deletions
diff --git a/guix/remote.scm b/guix/remote.scm
index 37e9827084..f6adb22846 100644
--- a/guix/remote.scm
+++ b/guix/remote.scm
@@ -146,15 +146,6 @@ remote store."
sources)))
(mbegin %store-monad
((store-lift send-files) to-send remote #:recursive? #t)
-
- ;; Build handlers are not tied to a specific <store-connection>.
- ;; If a handler is already installed, it might want to go ahead
- ;; and build, but on the local <store-connection> instead of
- ;; REMOTE. To avoid that, install a build handler that does
- ;; nothing.
- (return (with-build-handler (lambda (continue . _)
- (continue #t))
- (build-derivations remote inputs)))
-
+ (return (build-derivations remote inputs))
(return (close-connection remote))
(return (%remote-eval lowered session become-command)))))))