forked from lix-project/lix
Fix profile update in nix command
This commit is contained in:
parent
4a358743d2
commit
d5d196b0a1
|
@ -152,7 +152,7 @@ void MixProfile::updateProfile(const Buildables & buildables)
|
||||||
for (auto & output : bfd.outputs) {
|
for (auto & output : bfd.outputs) {
|
||||||
/* Output path should be known because we just tried to
|
/* Output path should be known because we just tried to
|
||||||
build it. */
|
build it. */
|
||||||
assert(!output.second);
|
assert(output.second);
|
||||||
result.push_back(*output.second);
|
result.push_back(*output.second);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue