mirror of
https://github.com/MillironX/dotfiles.git
synced 2024-11-14 19:03:09 +00:00
Thomas A. Christensen II
0f2023f999
Older versions of `which` apparantly are more verbose and list extra text in addition to the path. Get rid of that nonsense Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
16 lines
404 B
Text
16 lines
404 B
Text
# shellcheck shell=sh
|
|
# User specific environment
|
|
export PATH="$HOME/.local/bin:$HOME/bin:$PATH"
|
|
|
|
# Linuxbrew setup
|
|
if [ -d $HOME/../linuxbrew/.linuxbrew ]; then
|
|
BREWPATH=$HOME/../linuxbrew/.linuxbrew
|
|
elif [ -d $HOME/.linuxbrew ]; then
|
|
BREWPATH=$HOME/.linuxbrew
|
|
fi
|
|
|
|
if [ -n "$BREWPATH" ]; then
|
|
eval "$($BREWPATH/bin/brew shellenv)"
|
|
export HOMEBREW_MAKE_JOBS=1
|
|
export HOMEBREW_NO_ANALYTICS=1
|
|
fi
|