diff options
author | Benjamin Franzke <bfr@qbus.de> | 2023-06-21 09:49:57 +0200 |
---|---|---|
committer | Benjamin Franzke <bfr@qbus.de> | 2023-06-21 09:49:57 +0200 |
commit | ed80504a98793afe0c77370e444f188fd96bdf65 (patch) | |
tree | afab06026a49ae39e23c8e40af40c47fc1b1687c | |
parent | 9b38147d29e5d3863b580c3412224cf1923b54cb (diff) | |
download | dotfiles-ed80504a98793afe0c77370e444f188fd96bdf65.tar.gz dotfiles-ed80504a98793afe0c77370e444f188fd96bdf65.tar.bz2 dotfiles-ed80504a98793afe0c77370e444f188fd96bdf65.zip |
Prefer local bin path over globals
-rw-r--r-- | .bash_profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bash_profile b/.bash_profile index 031ab84..11e0c4f 100644 --- a/.bash_profile +++ b/.bash_profile @@ -7,6 +7,6 @@ fi # User specific environment and startup programs -PATH=$PATH:$HOME/.local/bin:$HOME/bin +PATH=$HOME/.local/bin:$HOME/bin:$PATH export PATH |