diff options
author | Bryan McLellan <btm@loftninjas.org> | 2014-10-13 16:31:40 -0400 |
---|---|---|
committer | Bryan McLellan <btm@loftninjas.org> | 2014-10-28 16:44:46 -0400 |
commit | c3dfc8ad3007ebd9628e2a0da87b5019f103ffbb (patch) | |
tree | 3a9f12d8ffdc7b152473f96afef1b8e3e1cad464 /lib/chef/resource/windows_package.rb | |
parent | e76978ca17fd05f0ce918764dafceb407958f0be (diff) | |
download | chef-c3dfc8ad3007ebd9628e2a0da87b5019f103ffbb.tar.gz |
windows_package installer_type should be a symbol
Fixes #1997
Diffstat (limited to 'lib/chef/resource/windows_package.rb')
-rw-r--r-- | lib/chef/resource/windows_package.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/windows_package.rb b/lib/chef/resource/windows_package.rb index c563ba5fdc..9bf3443423 100644 --- a/lib/chef/resource/windows_package.rb +++ b/lib/chef/resource/windows_package.rb @@ -43,7 +43,7 @@ class Chef set_or_return( :installer_type, arg, - :kind_of => [ String ] + :kind_of => [ Symbol ] ) end |