mirror of
https://github.com/opdavies/build-configs.git
synced 2025-03-13 05:26:56 +00:00
Sort .gitignore paths
This commit is contained in:
parent
3d0a8215f9
commit
98650ac11c
|
@ -12,6 +12,6 @@ docker-compose.override.yaml
|
|||
.dir-env/
|
||||
{% endif %}
|
||||
|
||||
{% for path in git.ignore %}
|
||||
{% for path in git.ignore|default([])|sort %}
|
||||
{{ path }}
|
||||
{% endfor %}
|
||||
|
|
|
@ -53,7 +53,7 @@ docker-compose.override.yaml
|
|||
!/{{ drupal.docroot }}/*/custom/**
|
||||
{% endif %}
|
||||
|
||||
{% for path in git.ignore|sort %}
|
||||
{% for path in git.ignore|default([])|sort %}
|
||||
{{ path }}
|
||||
{% endfor %}
|
||||
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
/.direnv/
|
||||
{% endif %}
|
||||
|
||||
{% for path in git.ignore %}
|
||||
{% for path in git.ignore|default([])|sort %}
|
||||
{{ path }}
|
||||
{% endfor %}
|
||||
|
|
|
@ -48,6 +48,6 @@ terraform.rc
|
|||
.dir-env/
|
||||
{% endif %}
|
||||
|
||||
{% for path in git.ignore %}
|
||||
{% for path in git.ignore|default([])|sort %}
|
||||
{{ path }}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in a new issue