From b4c5c9421f1c611c03638b3bce1d2555fe3d71d3 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@clevo" Date: Fri, 14 Oct 2022 19:02:13 +0200 Subject: [PATCH] Minor changes --- roles/i3/tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/i3/tasks/main.yml b/roles/i3/tasks/main.yml index 65782f2..5d91fc3 100644 --- a/roles/i3/tasks/main.yml +++ b/roles/i3/tasks/main.yml @@ -131,21 +131,21 @@ command: xdg-user-dirs-update - name: Build i3blocks for Debian + when: ansible_facts['distribution'] == 'Debian' block: - - name: Clone + - name: Clone i3blocks for Debian git: repo: https://github.com/vivien/i3blocks.git dest: ~/.git_clones/i3blocks clone: true update: false version: master - - name: Build + - name: Build i3blocks for Debian shell: cmd: ./autogen.sh && ./configure && make chdir: ~/.git_clones/i3blocks - - name: Install + - name: Install i3blocks for Debian become: true command: cmd: make install chdir: "{{ ansible_facts.user_dir }}/.git_clones/i3blocks" - when: ansible_facts['distribution'] == 'Debian'