forked from lix-project/nix-eval-jobs
Merge #206
206: fix recurseForDerivations evaluation in force-recurse mode r=Mic92 a=JulienMalka Co-authored-by: Julien Malka <julien@malka.sh>
This commit is contained in:
commit
5bff47314a
|
@ -328,7 +328,8 @@ static void worker(ref<EvalState> state, Bindings &autoArgs, AutoCloseFD &to,
|
|||
const std::string &name = state->symbols[i->name];
|
||||
attrs.push_back(name);
|
||||
|
||||
if (name == "recurseForDerivations") {
|
||||
if (name == "recurseForDerivations" &&
|
||||
!myArgs.forceRecurse) {
|
||||
auto attrv =
|
||||
v->attrs->get(state->sRecurseForDerivations);
|
||||
recurse = state->forceBool(
|
||||
|
|
Loading…
Reference in a new issue