From a860e353192b4db1698b739c77d75637503a5d30 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Mon, 10 Jun 2019 18:22:47 +0200 Subject: [PATCH] Feat: try to install st through sources --- tasks/arch_graphicals.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tasks/arch_graphicals.yml b/tasks/arch_graphicals.yml index d47c1e6..ec04175 100644 --- a/tasks/arch_graphicals.yml +++ b/tasks/arch_graphicals.yml @@ -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 + +