Minor changes
This commit is contained in:
parent
0fa7a792d6
commit
b4c5c9421f
1 changed files with 4 additions and 4 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue