Skip to content
This repository has been archived by the owner on Feb 14, 2018. It is now read-only.

Commit

Permalink
Merge pull request #23 from urbn/bug-22
Browse files Browse the repository at this point in the history
Fixed null check logic on env config, wasn't working at all before
  • Loading branch information
gmr committed Nov 4, 2014
2 parents 4ca880b + 7de62ae commit e146cf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/coffee/listeners/docker.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ define (require, exports, module) ->
config.Dns = container.get 'dns'
if container.get 'env'
config.Env = container.get 'env'
if not env?
else
config.Env = []

# Add the server IP
Expand Down

0 comments on commit e146cf6

Please sign in to comment.