fixup! Make roots a map of store paths to pinning links
This commit is contained in:
parent
ebc86550f9
commit
8574b70342
|
@ -428,10 +428,10 @@ static void opQuery(Strings opFlags, Strings opArgs)
|
|||
referrers, true, settings.gcKeepOutputs, settings.gcKeepDerivations);
|
||||
}
|
||||
Roots roots = store->findRoots();
|
||||
for (auto & [path, roots] : roots)
|
||||
for (auto & [path, links] : roots)
|
||||
if (referrers.find(path) != referrers.end())
|
||||
for (auto & root : roots)
|
||||
cout << format("%1% -> %2%\n") % root % path;
|
||||
for (auto & link : links)
|
||||
cout << format("%1%\n") % link;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue