forked from lix-project/lix
Merge pull request #4827 from matthewbauer/run-bashrc-first-in-nix-develop
Source bashrc first in nix develop
This commit is contained in:
commit
de77d1b924
|
@ -395,7 +395,7 @@ struct CmdDevelop : Common, MixEnvironment
|
|||
if (verbosity >= lvlDebug)
|
||||
script += "set -x\n";
|
||||
|
||||
script += fmt("rm -f '%s'\n", rcFilePath);
|
||||
script += fmt("command rm -f '%s'\n", rcFilePath);
|
||||
|
||||
if (phase) {
|
||||
if (!command.empty())
|
||||
|
@ -414,7 +414,7 @@ struct CmdDevelop : Common, MixEnvironment
|
|||
}
|
||||
|
||||
else {
|
||||
script += "[ -n \"$PS1\" ] && [ -e ~/.bashrc ] && source ~/.bashrc;\n";
|
||||
script = "[ -n \"$PS1\" ] && [ -e ~/.bashrc ] && source ~/.bashrc;\n" + script;
|
||||
if (developSettings.bashPrompt != "")
|
||||
script += fmt("[ -n \"$PS1\" ] && PS1=%s;\n", shellEscape(developSettings.bashPrompt));
|
||||
if (developSettings.bashPromptSuffix != "")
|
||||
|
|
Loading…
Reference in a new issue