forked from lix-project/lix
nix dev-shell: Unset shellHook
This avoids inheriting the caller's shellHook, which can happen when running a dev-shell inside a dev-shell.
This commit is contained in:
parent
efe6c186ea
commit
0135fd6ec4
|
@ -172,6 +172,8 @@ struct Common : InstallableCommand, MixProfile
|
|||
|
||||
void makeRcScript(const BuildEnvironment & buildEnvironment, std::ostream & out)
|
||||
{
|
||||
out << "unset shellHook\n";
|
||||
|
||||
out << "nix_saved_PATH=\"$PATH\"\n";
|
||||
|
||||
for (auto & i : buildEnvironment.env) {
|
||||
|
|
Loading…
Reference in a new issue