aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorPaul Bonaud <paul.bonaud@fretlink.com>2020-03-24 20:02:57 +0100
committerPaul Bonaud <paul.bonaud@fretlink.com>2020-03-24 20:05:35 +0100
commit47bbd50a222a2f0d477863ce9de6982cc5fc8fd3 (patch)
tree8ce03f2cc4ff396782aab7af6296aadc40553f6d /templates
parent0815543375419c6e15ac67d57d19578dfcf2b290 (diff)
downloadansible-clever-47bbd50a222a2f0d477863ce9de6982cc5fc8fd3.tar.gz
ansible-clever-47bbd50a222a2f0d477863ce9de6982cc5fc8fd3.tar.zst
ansible-clever-47bbd50a222a2f0d477863ce9de6982cc5fc8fd3.zip
fix: there was a bug in the generate env file
Bug Introduced by #57 because the `to_json` filter quotes the given value if it's a string, so the PR was "double quoting" each values.
Diffstat (limited to 'templates')
-rw-r--r--templates/env.j24
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/env.j2 b/templates/env.j2
index 66e5508..30bda82 100644
--- a/templates/env.j2
+++ b/templates/env.j2
@@ -1,9 +1,9 @@
1{% for key, value in (clever_base_env | combine(clever_env)).items() %} 1{% for key, value in (clever_base_env | combine(clever_env)).items() %}
2{{ key }}="{{ value | to_json }}" 2{{ key }}={{ value | to_json }}
3{% endfor %} 3{% endfor %}
4 4
5{%- if clever_haskell_entry_point %} 5{%- if clever_haskell_entry_point %}
6{# Haskell only #} 6{# Haskell only #}
7{# https://www.clever-cloud.com/doc/get-help/reference-environment-variables/#haskell #} 7{# https://www.clever-cloud.com/doc/get-help/reference-environment-variables/#haskell #}
8CC_RUN_COMMAND="{{'~/.local/bin/' + clever_haskell_entry_point | to_json }}" 8CC_RUN_COMMAND={{'~/.local/bin/' + clever_haskell_entry_point | to_json }}
9{% endif %} 9{% endif %}