diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-04-28 17:56:01 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-04-28 17:56:01 +0200 |
commit | 52a3ca823dd8aca8da32a198be2b1238cb321e6c (patch) | |
tree | 9c9bb63908a452a0699dfe41a7a35a483eea8a14 | |
parent | 6a8cba83bb6bdc2d018ec1543b8e904773391b24 (diff) |
Tweak warning message
-rw-r--r-- | src/nix-env/nix-env.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-env/nix-env.cc b/src/nix-env/nix-env.cc index 6c9cd9548..d62febaff 100644 --- a/src/nix-env/nix-env.cc +++ b/src/nix-env/nix-env.cc @@ -741,7 +741,7 @@ static void uninstallDerivations(Globals & globals, Strings & selectors, ); } if (split == workingElems.end()) - warn("Selector '%s' matched no installed paths", selector); + warn("selector '%s' matched no installed derivations", selector); for (auto removedElem = split; removedElem != workingElems.end(); removedElem++) { printInfo("uninstalling '%s'", removedElem->queryName()); } |