dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 50282624bfe1ed7e51a06a049f35fefb3d8c1ef1
parent 5b97d3a63508d6a4ceac5da9af34aa9f9a091ed3
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Wed, 20 Mar 2019 20:49:55 +0100

Homebrew sbin path


Former-commit-id: 80053f35f70ca447751042db72c8259ffe487ef8
Diffstat:
Mshell/commonprofile | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/shell/commonprofile b/shell/commonprofile @@ -34,6 +34,11 @@ if command -v go &> /dev/null; then PATH=$PATH:"$GOPATH"/bin fi fi + +# Homebrew +if [[ $PATH != *"/usr/local/sbin"* ]]; then + PATH="/usr/local/sbin:$PATH" +fi # Set a variable for my confidr CONF_DIR="$HOME/.dotfiles"