repl/load-flake: throw error if path isn't specified

This commit is contained in:
lincoln auster [they/them] 2022-02-06 16:28:21 -07:00
parent 4369771870
commit c23501a3b2

View file

@ -623,6 +623,9 @@ void NixRepl::loadFile(const Path & path)
void NixRepl::loadFlake(const std::string & flakeRefS)
{
if (flakeRefS.empty())
throw Error("cannot use `:load-flake` without a path specified. (Use . for the current working directory.)");
auto flakeRef = parseFlakeRef(flakeRefS, absPath("."), true);
if (evalSettings.pureEval && !flakeRef.input.isImmutable())
throw Error("cannot use ':load-flake' on mutable flake reference '%s' (use --impure to override)", flakeRefS);