1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +02:00

Rename requireGcStore to GcStore::require

I should have done this to begin with. This will be nicer once more
Store sub-interfaces exist too, to illustrate the pattern.
This commit is contained in:
John Ericson 2022-03-08 17:45:19 +00:00
parent aee56e0f89
commit 073e134de6
7 changed files with 12 additions and 12 deletions

View file

@ -429,7 +429,7 @@ static void opQuery(Strings opFlags, Strings opArgs)
store->computeFSClosure(
args, referrers, true, settings.gcKeepOutputs, settings.gcKeepDerivations);
auto & gcStore = requireGcStore(*store);
auto & gcStore = GcStore::require(*store);
Roots roots = gcStore.findRoots(false);
for (auto & [target, links] : roots)
if (referrers.find(target) != referrers.end())
@ -590,7 +590,7 @@ static void opGC(Strings opFlags, Strings opArgs)
if (!opArgs.empty()) throw UsageError("no arguments expected");
auto & gcStore = requireGcStore(*store);
auto & gcStore = GcStore::require(*store);
if (printRoots) {
Roots roots = gcStore.findRoots(false);
@ -629,7 +629,7 @@ static void opDelete(Strings opFlags, Strings opArgs)
for (auto & i : opArgs)
options.pathsToDelete.insert(store->followLinksToStorePath(i));
auto & gcStore = requireGcStore(*store);
auto & gcStore = GcStore::require(*store);
GCResults results;
PrintFreed freed(true, results);