mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Use StoreAPI::verifyStore()
This commit is contained in:
parent
b755752f76
commit
7106bb0611
1 changed files with 1 additions and 1 deletions
|
@ -768,7 +768,7 @@ static void opVerify(Strings opFlags, Strings opArgs)
|
|||
else if (*i == "--repair") repair = true;
|
||||
else throw UsageError(format("unknown flag ‘%1%’") % *i);
|
||||
|
||||
if (ensureLocalStore().verifyStore(checkContents, repair)) {
|
||||
if (store->verifyStore(checkContents, repair)) {
|
||||
printMsg(lvlError, "warning: not all errors were fixed");
|
||||
throw Exit(1);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue