nix-env -qa --json: Generate valid JSON even if there are invalid meta attrs

This commit is contained in:
Eelco Dolstra 2014-06-02 17:58:43 +02:00
parent ceed819284
commit 3c6b8a5215
1 changed files with 3 additions and 2 deletions

View File

@ -882,9 +882,10 @@ static void queryJSON(Globals & globals, vector<DrvInfo> & elems)
foreach (StringSet::iterator, j, metaNames) {
metaObj.attr(*j);
Value * v = i->queryMeta(*j);
if (!v)
if (!v) {
printMsg(lvlError, format("derivation `%1%' has invalid meta attribute `%2%'") % i->name % *j);
else {
cout << "null";
} else {
PathSet context;
printValueAsJSON(globals.state, true, *v, cout, context);
}