Skip to content

Commit

Permalink
fix: disable ansible-lint on shell
Browse files Browse the repository at this point in the history
  • Loading branch information
stephrobert committed Nov 19, 2022
1 parent 2ef4ad4 commit f4e7888
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
become: true
register: my_output
changed_when: my_output.rc != 0
tags:
- skip_ansible_lint
- name: Build and Install
ansible.builtin.shell:
cmd: make && make install
Expand All @@ -40,5 +42,5 @@
remote_src: yes
extra_opts: '-j'
become: true
register: my_output
changed_when: my_output.rc != 0
tags:
- skip_ansible_lint

0 comments on commit f4e7888

Please sign in to comment.