1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00

mention nix-store --query --roots when a path cannot be deleted

This commit is contained in:
Bob van der Linden 2018-08-08 21:21:21 +02:00
parent 103ad1598c
commit 58a85fa462

View file

@ -791,7 +791,11 @@ void LocalStore::collectGarbage(const GCOptions & options, GCResults & results)
assertStorePath(i); assertStorePath(i);
tryToDelete(state, i); tryToDelete(state, i);
if (state.dead.find(i) == state.dead.end()) if (state.dead.find(i) == state.dead.end())
throw Error(format("cannot delete path '%1%' since it is still alive") % i); throw Error(format(
"cannot delete path '%1%' since it is still alive. "
"To find out why use: "
"nix-store --query --roots"
) % i);
} }
} else if (options.maxFreed > 0) { } else if (options.maxFreed > 0) {