Prevent generating roles that do not pass linting (#63709)

Fixes bug where newly created role fails linting due to extra space
at end of line: [201] Trailing whitespace
pull/63804/head
Sorin Sbarnea 6 years ago committed by Sam Doran
parent 7aac7a56da
commit a6e610a9ed

@ -50,6 +50,6 @@ galaxy_info:
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.
{% for dependency in dependencies %}
{% for dependency in dependencies %}
#- {{ dependency }}
{%- endfor %}
{%- endfor %}

@ -47,6 +47,6 @@ galaxy_info:
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.
{%- for dependency in dependencies %}
{%- for dependency in dependencies %}
#- {{ dependency }}
{%- endfor %}
{%- endfor %}

@ -57,6 +57,6 @@ dependencies: []
# List your role dependencies here, one per line.
# Be sure to remove the '[]' above if you add dependencies
# to this list.
{%- for dependency in dependencies %}
{%- for dependency in dependencies %}
#- {{ dependency }}
{%- endfor %}
{%- endfor %}

Loading…
Cancel
Save