Skip to content

Commit

Permalink
Merge pull request #61 from paulrbr-fl/fix-env-file
Browse files Browse the repository at this point in the history
fix: there was a bug in the generate env file
  • Loading branch information
paulrbr-fl authored Mar 25, 2020
2 parents 0815543 + 47bbd50 commit 5816bb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/env.j2
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{% for key, value in (clever_base_env | combine(clever_env)).items() %}
{{ key }}="{{ value | to_json }}"
{{ key }}={{ value | to_json }}
{% endfor %}

{%- if clever_haskell_entry_point %}
{# Haskell only #}
{# https://www.clever-cloud.com/doc/get-help/reference-environment-variables/#haskell #}
CC_RUN_COMMAND="{{'~/.local/bin/' + clever_haskell_entry_point | to_json }}"
CC_RUN_COMMAND={{'~/.local/bin/' + clever_haskell_entry_point | to_json }}
{% endif %}

0 comments on commit 5816bb8

Please sign in to comment.