fix(shell): prioritize creation of $HOME/.local
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
3f8215fcc0
commit
2fdc93bd5e
1 changed files with 8 additions and 8 deletions
|
@ -1,4 +1,12 @@
|
||||||
---
|
---
|
||||||
|
- name: Create directories in `~/.local`
|
||||||
|
file:
|
||||||
|
path: "{{ item }}"
|
||||||
|
state: directory
|
||||||
|
loop:
|
||||||
|
- ~/.local/bin
|
||||||
|
- ~/.local/share
|
||||||
|
|
||||||
- name: Check for oh-my-zsh
|
- name: Check for oh-my-zsh
|
||||||
stat:
|
stat:
|
||||||
path: ~/.oh-my-zsh
|
path: ~/.oh-my-zsh
|
||||||
|
@ -31,14 +39,6 @@
|
||||||
src: templates/starship.toml.j2
|
src: templates/starship.toml.j2
|
||||||
dest: ~/.config/starship.toml
|
dest: ~/.config/starship.toml
|
||||||
|
|
||||||
- name: Create directories in `~/.local`
|
|
||||||
file:
|
|
||||||
path: "{{ item }}"
|
|
||||||
state: directory
|
|
||||||
loop:
|
|
||||||
- ~/.local/bin
|
|
||||||
- ~/.local/share
|
|
||||||
|
|
||||||
- name: Install script for toolbox name retrieval
|
- name: Install script for toolbox name retrieval
|
||||||
template:
|
template:
|
||||||
src: templates/scripts/toolbox_name.sh
|
src: templates/scripts/toolbox_name.sh
|
||||||
|
|
Loading…
Reference in a new issue