Add support for LinuxBrew

This commit is contained in:
Jan Jastrow 2024-06-17 21:13:49 +02:00
parent 882be853a7
commit 649ddcfa06

View File

@ -29,6 +29,11 @@ if test -d "/opt/homebrew/"; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
if test -d "/home/linuxbrew/.linuxbrew/"; then
export PATH="/home/linuxbrew/.linuxbrew/bin/:$PATH"
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi
if test -d "$HOME/go"; then
export PATH="$HOME/go/bin:$PATH"
fi