git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormail_redacted_for_web 2025-03-15 20:47:04 +0100
committermail_redacted_for_web 2025-03-15 20:47:04 +0100
commit1dd05d81c36786cab1ddbc849d744a54690fbb44 (patch)
tree714268d0217e7dcccbd5687266706b45664d1f0b
parent1f1f50fc67db2f4a32ca954dbc6798f97b214102 (diff)
downloaddotfiles-1dd05d81c36786cab1ddbc849d744a54690fbb44.tar.bz2
fix: do not use exit in sourced scripts
-rw-r--r--.bash/exec.bash2
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