1
0
mirror of https://github.com/chylex/dotfiles.git synced 2024-11-24 02:42:46 +01:00
dotfiles/ansible/roles/bash_completion/tasks/main.yaml
2023-01-09 13:41:49 +01:00

16 lines
296 B
YAML

---
- when: shell == '/bin/bash'
block:
- name: Update .bash_completion file
copy:
src: .bash_completion
dest: ~/.bash_completion
mode: "600"
- name: Update custom bash completions
copy:
src: .bin/
dest: ~/.bin/
mode: "600"