Fix profile update in nix command

This commit is contained in:
Fabian Möller 2020-10-02 12:10:31 +02:00
parent 4a358743d2
commit d5d196b0a1
No known key found for this signature in database
GPG key ID: 70B29D65DD8A7E31

View file

@ -152,7 +152,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);
}
},