mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
Fix InstallableFlake::what()
This commit is contained in:
parent
8e478c2341
commit
8426d99b0e
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ struct InstallableFlake : InstallableValue
|
|||
prefixes(prefixes)
|
||||
{ }
|
||||
|
||||
std::string what() override { return flakeRef.to_string() + ":" + *attrPaths.begin(); }
|
||||
std::string what() override { return flakeRef.to_string() + "#" + *attrPaths.begin(); }
|
||||
|
||||
std::vector<std::string> getActualAttrPaths();
|
||||
|
||||
|
|
Loading…
Reference in a new issue