mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
system: Adjust return value of bashrc.
Fixes a regression introduced in c743d646ee.
Without this, the fish shell integration is broken, and PATH does not include
~/.config/guix/current/bin.
* gnu/system/shadow.scm (%default-bashrc): Fix return value.
Change-Id: I54170caeef7ae541a4901743fcdcbfb353fa09d4
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Modified-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
parent
efbd55d6fa
commit
1a09cd1882
1 changed files with 2 additions and 2 deletions
|
|
@ -164,8 +164,8 @@ then
|
|||
# /etc/profile so we get PATH and other essential variables.
|
||||
[[ -n \"$SSH_CLIENT\" ]] && source /etc/profile
|
||||
|
||||
# Don't do anything else.
|
||||
return
|
||||
# Don't do anything else, returning a successful return code.
|
||||
return 0
|
||||
fi
|
||||
|
||||
for i in /etc/bashrc.d/*.sh; do
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue