diff options
Diffstat (limited to 'base/user-profile')
-rw-r--r-- | base/user-profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/user-profile b/base/user-profile index 2206a1f..370d637 100644 --- a/base/user-profile +++ b/base/user-profile @@ -13,10 +13,10 @@ export MAIN_ALSA_MIXER=PCM export MANSECT="1p:8p:1:8:2:3p:3:0:5:4:9:6:7:n:l" # Ensure ~/.local/bin and ~/.usr/bin are in PATH -if ( IFS=: ; printf '%s\n' $PATH ) | grep -Fx ~/.local/bin >/dev/null; then +if ! ( IFS=: ; printf '%s\n' $PATH ) | grep -Fx ~/.local/bin >/dev/null; then export PATH="${HOME}/.local/bin:${PATH}" fi -if ( IFS=: ; printf '%s\n' $PATH ) | grep -Fx ~/.usr/bin >/dev/null; then +if ! ( IFS=: ; printf '%s\n' $PATH ) | grep -Fx ~/.usr/bin >/dev/null; then export PATH="${HOME}/.usr/bin:${PATH}" fi |