From d394d68e1fa9d507e184bc56db51faf8a7ac05de Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 2 Mar 2026 13:22:51 -0500 Subject: [PATCH] [zsh] Actually load brew if found --- zsh/.zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 003961e..9290368 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -51,7 +51,7 @@ export VISUAL="$EDITOR" case "$(uname -s)" in Linux) - [[ -d "/home/linuxbrew/.linuxbrew/bin" ]] && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv &>/dev/null)" + [[ -d "/home/linuxbrew/.linuxbrew/bin" ]] && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" ;; Darwin) eval "$(/opt/homebrew/bin/brew shellenv)"