forked from lix-project/hydra
Debug tweak
This commit is contained in:
parent
ad2b7646ac
commit
4c0e3e4703
1 changed files with 5 additions and 1 deletions
|
@ -114,6 +114,7 @@ static void findJobsWrapped(EvalState & state, JSONObject & top,
|
||||||
if (drv.system == "unknown")
|
if (drv.system == "unknown")
|
||||||
throw EvalError("derivation must have a ‘system’ attribute");
|
throw EvalError("derivation must have a ‘system’ attribute");
|
||||||
|
|
||||||
|
{
|
||||||
top.attr(attrPath);
|
top.attr(attrPath);
|
||||||
JSONObject res(top.str);
|
JSONObject res(top.str);
|
||||||
res.attr("nixName", drv.name);
|
res.attr("nixName", drv.name);
|
||||||
|
@ -156,6 +157,9 @@ static void findJobsWrapped(EvalState & state, JSONObject & top,
|
||||||
JSONObject res2(res.str);
|
JSONObject res2(res.str);
|
||||||
for (auto & j : outputs)
|
for (auto & j : outputs)
|
||||||
res2.attr(j.first, j.second);
|
res2.attr(j.first, j.second);
|
||||||
|
|
||||||
|
}
|
||||||
|
top.str << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
|
@ -193,7 +197,7 @@ static void findJobs(EvalState & state, JSONObject & top,
|
||||||
top.attr(attrPath);
|
top.attr(attrPath);
|
||||||
JSONObject res(top.str);
|
JSONObject res(top.str);
|
||||||
res.attr("error", e.msg());
|
res.attr("error", e.msg());
|
||||||
top.str << "\n";
|
top.str << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue