fix local bin find since its a link

This commit is contained in:
frosty 2024-06-23 17:03:40 -04:00
parent 745433f3d3
commit 31b5f0da1f

View file

@ -5,7 +5,7 @@ export XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}"
export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
# $PATH additions
export PATH="$PATH:$(find "$HOME/.local/bin" -type d | paste -sd ':' -)"
export PATH="$PATH:$(find "$HOME/.local/bin/" -type d | paste -sd ':' -)"
# Default programs
export TERMINAL="${TERMINAL:-xfce4-terminal}"