Skip to content

Commit

Permalink
Cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Oct 25, 2022
1 parent 0b6f83e commit 9644dc7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
- gnu-parallel-install
- gnu-parallel-install-build

- name: version check
ansible.builtin.shell: > # noqa risky-shell-pipe
- name: version check # noqa risky-shell-pipe
ansible.builtin.shell: >
tar -jtf {{ gnu_parallel_download_path }}/{{ gnu_parallel_download_url | basename }} | head -n 1
args:
warn: false
Expand All @@ -90,7 +90,7 @@
- gnu-parallel-install
- gnu-parallel-install-build

- name: install
- name: install # noqa no-handler
when: _unarchive is changed
tags:
- configuration
Expand All @@ -104,6 +104,7 @@
./configure
args:
chdir: "{{ gnu_parallel_build_path }}/{{ _version_check.stdout }}"
changed_when: true
tags:
- gnu-parallel-install-build-configure

Expand All @@ -112,6 +113,7 @@
make -j{{ ansible_processor_cores + 1 }}
args:
chdir: "{{ gnu_parallel_build_path }}/{{ _version_check.stdout }}"
changed_when: true
tags:
- gnu-parallel-install-build-make

Expand All @@ -120,6 +122,7 @@
make install
args:
chdir: "{{ gnu_parallel_build_path }}/{{ _version_check.stdout }}"
changed_when: true
tags:
- gnu-parallel-install-build-make-install

Expand Down

0 comments on commit 9644dc7

Please sign in to comment.