From c14ee7365e42e2015ad1b549cc29f6018c5f2bdb Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Fri, 7 Nov 2025 20:38:19 +0100 Subject: Fix including local bin if exists --- .bash_profile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bash_profile b/.bash_profile index 9ee3856..ef9f275 100644 --- a/.bash_profile +++ b/.bash_profile @@ -78,6 +78,11 @@ if command -v neomutt 1>/dev/null 2>&1; then } fi +# ==== include local bin in path +if [ -d "$HOME/.local/bin" ]; then + export PATH="$HOME/.local/bin:$PATH" +fi + # ==== go config. if command -v go 1>/dev/null 2>&1; then export PATH="$HOME/go/bin:$PATH" -- cgit v1.2.3