ansible-zsh-chic/tasks/starship_x64.yml

18 lines
452 B
YAML
Raw Normal View History

2020-08-07 19:59:07 +02:00
---
2021-02-23 18:45:51 +01:00
- name: Download starship binary (x64)
2020-08-07 19:59:07 +02:00
get_url:
2021-02-23 18:45:51 +01:00
url: https://github.com/starship/starship/releases/download/v{{ zsh_chic_starship_version }}/starship-x86_64-unknown-linux-gnu.tar.gz
2020-08-07 19:59:07 +02:00
dest: /root/starship.tar.gz
owner: root
group: root
mode: 0755
- name: Extract and install starship binary
unarchive:
src: /root/starship.tar.gz
dest: /usr/local/bin
remote_src: yes
owner: root
group: root
mode: 0755