diff options
author | mail_redacted_for_web | 2025-03-15 20:47:04 +0100 |
---|---|---|
committer | mail_redacted_for_web | 2025-03-15 20:47:04 +0100 |
commit | 1dd05d81c36786cab1ddbc849d744a54690fbb44 (patch) | |
tree | 714268d0217e7dcccbd5687266706b45664d1f0b | |
parent | 1f1f50fc67db2f4a32ca954dbc6798f97b214102 (diff) | |
download | dotfiles-1dd05d81c36786cab1ddbc849d744a54690fbb44.tar.bz2 |
fix: do not use exit in sourced scripts
-rw-r--r-- | .bash/exec.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bash/exec.bash b/.bash/exec.bash index a59df2a..713e1ab 100644 --- a/.bash/exec.bash +++ b/.bash/exec.bash @@ -20,4 +20,4 @@ fi # because on some hosts the login path is fucked, unset in .local # if it causes irritation: -cd ~ || cd || exit 151 +cd ~ || cd || return 151 |