Use shell chdir instead of cd

This commit is contained in:
flyingscorpio@clevo 2022-06-12 12:58:34 +02:00
parent dee35e80e9
commit 36861ec8f7

View file

@ -116,8 +116,12 @@
clone: true
update: false
- name: Build
shell: cd ~/.git_clones/i3blocks && ./autogen.sh && ./configure && make
shell:
cmd: ./autogen.sh && ./configure && make
chdir: ~/.git_clones/i3blocks
- name: Install
become: true
shell: cd {{ ansible_facts.user_dir }}/.git_clones/i3blocks && make install
shell:
cmd: make install
chdir: "{{ ansible_facts.user_dir }}/.git_clones/i3blocks"
when: ansible_facts['distribution'] == 'Debian'