aboutsummaryrefslogtreecommitdiff
path: root/src/build-remote/build-remote.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/build-remote/build-remote.cc')
-rw-r--r--src/build-remote/build-remote.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/build-remote/build-remote.cc b/src/build-remote/build-remote.cc
index 8876da6c0..7ffbdca7c 100644
--- a/src/build-remote/build-remote.cc
+++ b/src/build-remote/build-remote.cc
@@ -208,7 +208,10 @@ connected:
drv.inputSrcs = inputs;
printError("building ‘%s’ on ‘%s’", drvPath, storeUri);
- sshStore->buildDerivation(drvPath, drv);
+ auto result = sshStore->buildDerivation(drvPath, drv);
+
+ if (!result.success())
+ throw Error("build of ‘%s’ on ‘%s’ failed: %s", drvPath, storeUri, result.errorMsg);
PathSet missing;
for (auto & path : outputs)