diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-10-12 23:00:18 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-10-12 23:00:18 +0000 |
commit | bdc772022766e65fa8ea6d29fff0735529ab47f3 (patch) | |
tree | d12a08d6a29d929fb646571e65bbd68bf009f3d4 /src/nix/command.cc | |
parent | 6c7b81047f8ead0bb2f8dd588dfcb5f50d1554a9 (diff) | |
parent | 20d2140e450b066a521933dd322d089fd6c248fa (diff) |
Merge branch 'master' of github.com:NixOS/nix into trustless-remote-builder-simple
Diffstat (limited to 'src/nix/command.cc')
-rw-r--r-- | src/nix/command.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nix/command.cc b/src/nix/command.cc index 37a4bc785..9a38c77f1 100644 --- a/src/nix/command.cc +++ b/src/nix/command.cc @@ -1,5 +1,6 @@ #include "command.hh" #include "store-api.hh" +#include "local-fs-store.hh" #include "derivations.hh" #include "nixexpr.hh" #include "profiles.hh" @@ -152,7 +153,7 @@ void MixProfile::updateProfile(const Buildables & buildables) for (auto & output : bfd.outputs) { /* Output path should be known because we just tried to build it. */ - assert(!output.second); + assert(output.second); result.push_back(*output.second); } }, |