Skip to content

Commit

Permalink
Allow docker env vars to be defined and empty
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafe Colton committed Nov 10, 2014
1 parent f582efe commit eb134d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
language: python
sudo: false
sudo: true
env:
global:
- NETWORK_ENV=demo
Expand Down
2 changes: 1 addition & 1 deletion templates/etc-default.j2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# vim:filetype=sh
# {{ ansible_managed }}

{% for key, value in modcloth_app_env|dictsort %}{{ key }}={{ value }}
{% for key, value in modcloth_app_env|dictsort %}{{ key }}={{ value | default('', true) }}
{% endfor %}

0 comments on commit eb134d3

Please sign in to comment.