forked from lix-project/hydra
accidentally committed an = too little, which caused all unknown values to result in 'not building', which was not the intention
This commit is contained in:
parent
739a03393c
commit
bb6ef9c2ed
|
@ -178,7 +178,7 @@ static void findJobsWrapped(EvalState & state, XMLWriter & doc,
|
|||
Bindings());
|
||||
}
|
||||
|
||||
else if (v.type = tNull) {
|
||||
else if (v.type == tNull) {
|
||||
// allow null values, meaning 'do nothing'
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue