1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-25 03:39:36 +01:00

Replace ∅ with (absent)

This commit is contained in:
Graham Christensen 2025-06-02 09:28:59 -04:00
parent 7d2dbbd3aa
commit 039d19159f
2 changed files with 1 additions and 5 deletions

View file

@ -49,7 +49,7 @@ GroupedPaths getClosureInfo(ref<Store> store, const StorePath & toplevel)
std::string showVersions(const StringSet & versions)
{
if (versions.empty()) return "";
if (versions.empty()) return "(absent)";
StringSet versions2;
for (auto & version : versions)
versions2.insert(version.empty() ? "(no version)" : version);