Added checks for if-exists for cargo and linuxbrew

This commit is contained in:
Eric Renfro 2022-06-26 09:51:44 -04:00
parent 721eb8cbd2
commit 7a872d7bb3
2 changed files with 7 additions and 2 deletions

View File

@ -7,4 +7,7 @@
: ${ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim}
# }}} End configuration added by Zim install
. "$HOME/.cargo/env"
if [[ -d "$HOME/.cargo" ]]; then
. "$HOME/.cargo/env"
fi

4
.zshrc
View File

@ -123,7 +123,9 @@ bindkey -M vicmd 'j' history-substring-search-down
# }}} End configuration added by Zim install
# Homebrew
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
if [[ -d "/home/linuxbrew/.linuxbrew" ]]; then
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi
# Set Path:
typeset -U PATH