summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bashrc/main.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bashrc/main.sh b/bashrc/main.sh
index d8b5a27..f4fb0d9 100644
--- a/bashrc/main.sh
+++ b/bashrc/main.sh
@@ -1,10 +1,10 @@
# this file is sourced by all bash shells on startup
# test for interactive shell
-[[ $- != *i* ]] && exit
+[[ $- != *i* ]] && return
# return if this script is executed twice
-[[ -n $(declare -p _DOTFILES_DIR 2>/dev/null) ]] && exit
+[[ -n $(declare -p _DOTFILES_DIR 2>/dev/null) ]] && return
declare -r _DOTFILES_DIR="${HOME}/.dotfiles"
declare -r _BASHRC_DIR="${_DOTFILES_DIR}/bashrc"