Minor cleanup
This commit is contained in:
parent
00b286275c
commit
7689181e4f
1 changed files with 13 additions and 11 deletions
|
@ -482,7 +482,7 @@ void Store::pathInfoToJSON(JSONPlaceholder & jsonOut, const PathSet & storePaths
|
||||||
if (showClosureSize)
|
if (showClosureSize)
|
||||||
jsonPath.attr("closureSize", getClosureSize(storePath));
|
jsonPath.attr("closureSize", getClosureSize(storePath));
|
||||||
|
|
||||||
if (!includeImpureInfo) continue;
|
if (includeImpureInfo) {
|
||||||
|
|
||||||
if (info->deriver != "")
|
if (info->deriver != "")
|
||||||
jsonPath.attr("deriver", info->deriver);
|
jsonPath.attr("deriver", info->deriver);
|
||||||
|
@ -498,6 +498,8 @@ void Store::pathInfoToJSON(JSONPlaceholder & jsonOut, const PathSet & storePaths
|
||||||
for (auto & sig : info->sigs)
|
for (auto & sig : info->sigs)
|
||||||
jsonSigs.elem(sig);
|
jsonSigs.elem(sig);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue