Use ~/.local/bin instead of ~/bin

This commit is contained in:
Anthony Rose 2022-03-06 16:10:55 +00:00
parent 25081f9271
commit d96910733a
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ _acp_add_path () {
export PATH
}
for dir in "$HOME/bin" \
for dir in "$HOME/.local/bin" \
"$HOME/.cargo/bin" \
"$HOME/opt/centos-git-common" \
"${XDG_DATA_HOME:-$HOME/.local/share}/gem/ruby/bin" \

View file

@ -20,7 +20,7 @@
mode: '0700'
- name: Create user bin directory
ansible.builtin.file:
path: "{{ ansible_env.HOME }}/bin"
path: "{{ ansible_env.HOME }}/.local/bin"
state: directory
- name: Create user opt directory
ansible.builtin.file: