Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dometto committed Nov 18, 2024
1 parent d3c156d commit 57074f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _run_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
chdir: /rsc/plugins/{{ remote_plugin.script_folder | basename }}
executable: /bin/bash
register: roles_install
changed_when: 'Nothing to do' not in roles_install.stdout
changed_when: "'Nothing to do' not in roles_install.stdout"

- name: Install collection dependencies for Ansible plugin
when: requirements_path is defined
Expand All @@ -39,7 +39,7 @@
chdir: /rsc/plugins/{{ remote_plugin.script_folder | basename }}
executable: /bin/bash
register: collections_install
changed_when: 'Nothing to do' not in roles_install.stdout
changed_when: "'Nothing to do' not in roles_install.stdout"

- name: Test the component by executing it using ansible on the workspace

Check warning on line 44 in _run_component.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: ansible-playbook -c local -v -b {{ remote_plugin.arguments }} -e='{{ remote_plugin.parameters }}' /rsc/plugins/{{ remote_plugin.script_folder }}/{{remote_plugin.path }}
ansible.builtin.command: >
Expand Down

0 comments on commit 57074f2

Please sign in to comment.