diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2022-08-28 21:54:26 +0200 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2022-08-28 21:54:26 +0200 |
commit | 71b72d35ee024521ca91668591ddbf49008375db (patch) | |
tree | 92d6b415086422e25cb4629cba208cdbcee7744f /sh | |
parent | 0e802b3e0549c2b3400161cb2479cd18d3cc79ad (diff) | |
download | dotfiles-71b72d35ee024521ca91668591ddbf49008375db.tar.gz dotfiles-71b72d35ee024521ca91668591ddbf49008375db.tar.bz2 |
sh: Add ~/.local/bin instead of ~/bin to PATH
Diffstat (limited to 'sh')
-rw-r--r-- | sh/.config/env/10-path.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sh/.config/env/10-path.sh b/sh/.config/env/10-path.sh index 67cb738..bae9952 100644 --- a/sh/.config/env/10-path.sh +++ b/sh/.config/env/10-path.sh @@ -1,4 +1,4 @@ -if [ -d "${HOME}/bin" ] +if [ -d "${HOME}/.local/bin" ] then - export PATH="${PATH}:${HOME}/bin" + export PATH="${PATH}:${HOME}/.local/bin" fi |