mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
Extend Nix repl missing executable error message
Co-Authored-By: Robert Hensing <robert@roberthensing.nl
This commit is contained in:
parent
6594573f3d
commit
67a66212c3
1 changed files with 1 additions and 1 deletions
|
@ -826,7 +826,7 @@ void NixRepl::runNix(Path program, const Strings & args, const std::optional<std
|
||||||
if (runNixPtr)
|
if (runNixPtr)
|
||||||
(*runNixPtr)(program, args, input);
|
(*runNixPtr)(program, args, input);
|
||||||
else
|
else
|
||||||
throw Error("Cannot run '%s', no method of calling the Nix CLI provided", program);
|
throw Error("Cannot run '%s' because no method of calling the Nix CLI was provided. This is a configuration problem pertaining to how this program was built. See Nix 2.25 release notes", program);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue