mirror of
https://github.com/NixOS/nix.git
synced 2025-11-12 21:46:01 +01:00
Improve error message when an argument is not a flake
This commit is contained in:
parent
b4e23dcd9e
commit
b51dff431c
1 changed files with 4 additions and 1 deletions
|
|
@ -468,7 +468,10 @@ std::vector<std::shared_ptr<Installable>> SourceExprCommand::parseInstallables(
|
|||
if (s.find('/') != std::string::npos && (storePath = follow(s)))
|
||||
result.push_back(std::make_shared<InstallableStorePath>(store, store->printStorePath(*storePath)));
|
||||
else
|
||||
throw Error("unrecognized argument '%s'", s);
|
||||
throw Error(
|
||||
pathExists(s)
|
||||
? "path '%s' is not a flake or a store path"
|
||||
: "don't know how to handle argument '%s'", s);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue