From 1bf562eec931e9515cee4538af254a2518e43fe6 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sat, 7 Apr 2018 16:56:58 +0300 Subject: [PATCH] .zshrc: Add Homebrew's sbin to PATH on macOS --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 4941bad..569d071 100644 --- a/.zshrc +++ b/.zshrc @@ -22,7 +22,7 @@ compinit # OS-specific things if [[ "$OSTYPE" =~ ^darwin.*$ ]]; then # explicitly add Homebrew binary paths just in case Terminal doesn't inherit it from macOS, for example Alacritty. - PATH=$PATH:/usr/local/bin + PATH=$PATH:/usr/local/bin:/usr/local/sbin # Add brew stuff to MANPATH MANPATH=/usr/local/share/man:/usr/local/opt/postgresql@9.5/share/man:$PATH