Skip to content

Commit

Permalink
Merge pull request #75 from stickeeuk/fix-project-environment
Browse files Browse the repository at this point in the history
Correct default for environment attribute
  • Loading branch information
djoos authored Jun 22, 2017
2 parents da75aa1 + 51cdadc commit dbe415f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/project.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
attribute :user, :kind_of => String, :default => 'root'
attribute :group, :kind_of => String, :default => 'root'
attribute :umask, :kind_of => [String, Integer], :default => '0002'
attribute :environment, :kind_of => Hash, :default => nil
attribute :environment, :kind_of => Hash, :default => {}

def initialize(*args)
super
Expand Down

0 comments on commit dbe415f

Please sign in to comment.