From a7e4a51a3a4ff4c2ab4c9f7ed4be77f822559386 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Sun, 10 Mar 2019 08:40:24 +1100 Subject: [PATCH] if linuxbrew exists add to path --- zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 52a18f7..a0a5d48 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -101,3 +101,6 @@ export EDITOR='vim' # alias zshconfig="mate ~/.zshrc" # alias ohmyzsh="mate ~/.oh-my-zsh" +if [ -d "/home/linuxbrew/.linuxbrew" ] ; then + export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH" +fi