~ruther/guix-local

1a09cd18820b91c9ddb30c08a8eecbe72a9e84b5 — Mazin AlHaddad 1 year, 1 month ago efbd55d
system: Adjust return value of bashrc.

Fixes a regression introduced in c743d646ee9104aa14d066cdf6657a0fac82ebea.

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>
1 files changed, 2 insertions(+), 2 deletions(-)

M gnu/system/shadow.scm
M gnu/system/shadow.scm => gnu/system/shadow.scm +2 -2
@@ 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