From 4137c34c14438cd04f2cf127c7b1eb0799ed78a1 Mon Sep 17 00:00:00 2001 From: idk Date: Sat, 14 Jul 2018 09:08:10 -0400 Subject: [PATCH] Bug fix: $PATH sometimes breaks from package conflicts This is meant for LARBS/issues/29 --- .bash_profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bash_profile b/.bash_profile index e277fc1..2941fb6 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,7 +4,7 @@ [[ -f ~/.bashrc ]] && . ~/.bashrc -export PATH=$PATH:$HOME/.scripts +export PATH="$PATH:$HOME/.scripts" export EDITOR="vim" export TERMINAL="st" export BROWSER="firefox"