From 88bae496fdd20b93fed6496e97e7bcbee640de84 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 13 Jan 2026 17:19:27 -0500 Subject: [PATCH] [zsh] Fix missing dir errors --- zsh/.zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index cd9519d..a9a2d25 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -36,7 +36,7 @@ PROMPT="${hostname} ${PROMPT}" export PATH="/home/powellc/.shorebird/bin:$PATH" export PATH="${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH" -. ${ASDF_DATA_DIR:-$HOME/.asdf}/plugins/golang/set-env.zsh +. ${ASDF_DATA_DIR:-$HOME/.asdf}/plugins/golang/set-env.zsh &>/dev/null export TERM=xterm-256color @@ -45,7 +45,7 @@ export VISUAL="$EDITOR" case "$(uname -s)" in Linux) - eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" + eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv &>/dev/null)" ;; Darwin) eval "$(/opt/homebrew/bin/brew shellenv)"