Skip to content

Commit

Permalink
fix: make sure not to include unecessary ENV variable
Browse files Browse the repository at this point in the history
This is a fix to an unfortunate bug introduced by #64 because we had a
default value set to `None` on the
`clever_haskell_entry_point`. Ansible considers `None` as a defined
value so the `is defined` condition doesn't match our need
  • Loading branch information
paulrbr-fl committed Jun 19, 2020
1 parent f7c122f commit 759815a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ clever_app_root: "{{ app_root | default(playbook_dir + '/..') }}"
clever_app_confdir: "{{ clever_app_root }}/.clever_cloud"
clever_login_file: "{{ clever_app_confdir }}/login"

clever_haskell_entry_point: "{{ clever_entry_point | default(None) }}"
clever_haskell_entry_point: "{{ clever_entry_point | default(omit) }}"
clever_haskell_env: {}
clever_env: {}

Expand Down

0 comments on commit 759815a

Please sign in to comment.