From c30057a34487ae37aa595fc3f539c2a8df1e0682 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Sun, 28 Jul 2024 07:30:42 +0300 Subject: [PATCH] profile.d: add 99-brew.sh --- etc/profile.d/99-brew.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 etc/profile.d/99-brew.sh diff --git a/etc/profile.d/99-brew.sh b/etc/profile.d/99-brew.sh new file mode 100644 index 00000000..2eb1ed4d --- /dev/null +++ b/etc/profile.d/99-brew.sh @@ -0,0 +1,5 @@ +# https://github.com/Homebrew/brew +if [ -d /home/linuxbrew/.linuxbrew/bin ]; then + PATH="/home/linuxbrew/.linuxbrew/bin:$PATH" + eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv) +fi