fix(zsh): resolve syntax error for apt/dnf

This commit is contained in:
Price Hiller 2022-08-01 16:14:20 -05:00
parent df5aaea2d8
commit 59fb776442

View File

@ -26,9 +26,9 @@
changed_when: true changed_when: true
- name: Install Pyenv build dependencies for Debian based systems - name: Install Pyenv build dependencies for Debian based systems
become: true
ansible.builtin.apt: ansible.builtin.apt:
update_cache: true update_cache: true
become: true
name: name:
- make - make
- build-essential - build-essential
@ -63,9 +63,9 @@
when: ansible_facts.distribution == 'Archlinux' when: ansible_facts.distribution == 'Archlinux'
- name: Install Pyenv build depdencies for CentOS - name: Install Pyenv build depdencies for CentOS
become: true
ansible.builtin.dnf: ansible.builtin.dnf:
update_cache: true update_cache: true
become: true
name: name:
- gcc - gcc
- zlib-devel - zlib-devel