From b1352cf6f165efa4c4ad4c749ba923dc9f24852a Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Tue, 10 May 2022 15:35:04 -0400 Subject: [PATCH] change local PATH setup --- dot_config/bash/bash-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_config/bash/bash-setup.sh b/dot_config/bash/bash-setup.sh index a37430e..928935b 100644 --- a/dot_config/bash/bash-setup.sh +++ b/dot_config/bash/bash-setup.sh @@ -27,9 +27,9 @@ unset rc complete -cf sudo # local paths -if ! [[ "$PATH" =~ $HOME/.local/bin:$HOME/bin: ]] +if ! [[ "$PATH" =~ "$HOME/.local/bin:" ]] then - PATH="$HOME/.local/bin:$HOME/bin:$PATH" + PATH="$HOME/.local/bin:$PATH" fi export PATH