8 lines
120 B
Bash
8 lines
120 B
Bash
BREW_HOME=/home/linuxbrew
|
|
BREW="$BREW_HOME/.linuxbrew/bin/brew"
|
|
|
|
if [[ -e $BREW ]]; then
|
|
eval "$($BREW shellenv)"
|
|
fi
|
|
|