18 lines
452 B
YAML
18 lines
452 B
YAML
---
|
|
- name: Download starship binary (x64)
|
|
get_url:
|
|
url: https://github.com/starship/starship/releases/download/v{{ zsh_chic_starship_version }}/starship-x86_64-unknown-linux-gnu.tar.gz
|
|
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
|