diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-07-14 22:34:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-14 22:34:36 -0400 |
| commit | 5f846ed8062f05f8906cd527dc5184fe8499123e (patch) | |
| tree | 76d55c4e4391954f5b19954d90b21ea86e602a05 | |
| parent | 5ab0e568b0f4180f09031aeae6d9585e8956e648 (diff) | |
| parent | 4137c34c14438cd04f2cf127c7b1eb0799ed78a1 (diff) | |
| download | eibhear-5f846ed8062f05f8906cd527dc5184fe8499123e.tar.gz eibhear-5f846ed8062f05f8906cd527dc5184fe8499123e.tar.zst eibhear-5f846ed8062f05f8906cd527dc5184fe8499123e.zip | |
Merge pull request #73 from CecileGS/patch-2
Bug fix: $PATH sometimes breaks from package conflicts
| -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" |
