diff options
Diffstat (limited to 'third_party/nix/src/libexpr/primops.cc')
-rw-r--r-- | third_party/nix/src/libexpr/primops.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/primops.cc b/third_party/nix/src/libexpr/primops.cc index 54dc315fb945..34d659675bf5 100644 --- a/third_party/nix/src/libexpr/primops.cc +++ b/third_party/nix/src/libexpr/primops.cc @@ -22,6 +22,7 @@ #include "libstore/store-api.hh" #include "libutil/archive.hh" #include "libutil/json.hh" +#include "libutil/status.hh" #include "libutil/util.hh" namespace nix { @@ -90,7 +91,7 @@ void EvalState::realiseContext(const PathSet& context) { unsigned long long narSize; store->queryMissing(drvs, willBuild, willSubstitute, unknown, downloadSize, narSize); - store->buildPaths(drvs); + nix::util::OkOrThrow(store->buildPaths(drvs)); } /* Load and evaluate an expression from path specified by the |