diff options
| author | idk <cecilegs@protonmail.com> | 2018-07-14 09:08:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-14 09:08:10 -0400 |
| commit | 4137c34c14438cd04f2cf127c7b1eb0799ed78a1 (patch) | |
| tree | b65dfdcfcda6b8e292bc971edd284ea6e0d99abf | |
| parent | 202893c8797e110879d4ba7d765fddd262331bd4 (diff) | |
| download | eibhear-4137c34c14438cd04f2cf127c7b1eb0799ed78a1.tar.gz eibhear-4137c34c14438cd04f2cf127c7b1eb0799ed78a1.tar.zst eibhear-4137c34c14438cd04f2cf127c7b1eb0799ed78a1.zip | |
Bug fix: $PATH sometimes breaks from package conflicts
This is meant for LARBS/issues/29
| -rw-r--r-- | .bash_profile | 2 |
1 files changed, 1 insertions, 1 deletions
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" |
