one 'endif' was missing.

This commit is contained in:
Andrea Dell'Amico 2020-05-22 16:54:20 +02:00
parent 14852ce15a
commit 0ad65e0cf5
1 changed files with 2 additions and 2 deletions

View File

@ -3,5 +3,5 @@
export {{ proto }}="{{ proxy_env.http_proxy }}"
{% endfor %}
{% endif %}
export no_proxy="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endfor %}"
export NO_PROXY="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endfor %}"
export no_proxy="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endif %}{% endfor %}"
export NO_PROXY="{% for target in no_proxy_targets %}{{ target }}{% if not loop.last %},{% endif %}{% endfor %}"