summaryrefslogtreecommitdiffstats
path: root/.bash_profile
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-11-07 20:38:19 +0100
committerAhmed Abdelhalim <[email protected]>2025-11-07 20:38:19 +0100
commitc14ee7365e42e2015ad1b549cc29f6018c5f2bdb (patch)
tree0ec1d06e60a5b14c19f02c036b5443b62fa04351 /.bash_profile
parent636b2f7f2061e14978b588e5402783429c4c04eb (diff)
Fix including local bin if exists
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile5
1 files changed, 5 insertions, 0 deletions
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"