Feat: try to install st through sources

This commit is contained in:
Bertrand Benjamin 2019-06-10 18:22:47 +02:00
parent c2c513d712
commit a860e35319
1 changed files with 15 additions and 0 deletions

View File

@ -82,3 +82,18 @@
become: yes
become_user: aur_builder
- name: Download st
git:
repo: https://git.opytex.org/lafrite/st.git
dest: /home/aur_builder/
register: st_update
- name: Install st
command: "./update.sh"
args:
chdir: "/home/aur_builder/st/"
when: st_update|changed
become: yes
become_user: aur_builder