From 06e7241a0f508a334a84c49459093cfd03b53b6e Mon Sep 17 00:00:00 2001 From: "Bradan J. Wolbeck" Date: Sun, 26 Jul 2026 15:59:15 -0600 Subject: [PATCH] feat(bash): ensure user's local bin folder is on the path --- bash/bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bash/bashrc b/bash/bashrc index 4f5b95c..6c4b6a5 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -8,6 +8,10 @@ alias ls='ls --color=auto' alias ll='ls --color=auto -l' alias l='ls --color=auto -lA' +if [[ -d "$HOME/.local/bin" ]]; then + export PATH="$HOME/.local/bin:$PATH" +fi + DISTRO='unknown' # Generic distro check.