diff options
author | Tim Smith <tsmith@chef.io> | 2018-11-19 12:31:43 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-11-19 12:33:13 -0800 |
commit | e31d9830f6e2ee62d230d0e628970d98ce0c072e (patch) | |
tree | 4da23b3d50c79c687e3ca34d6d263adebc0c5e3b | |
parent | f79e5f24488e59ce7c38b059e3a74af143d63e33 (diff) | |
download | chef-e31d9830f6e2ee62d230d0e628970d98ce0c072e.tar.gz |
Revert homebrew_tap to using String for ownerproperties3
It's using owner in an env variable and I'm not sure if that will
actually work. We should stick with a string here.
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | lib/chef/resource/homebrew_tap.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/homebrew_tap.rb b/lib/chef/resource/homebrew_tap.rb index ca6b322d7e..aff65685b7 100644 --- a/lib/chef/resource/homebrew_tap.rb +++ b/lib/chef/resource/homebrew_tap.rb @@ -48,7 +48,7 @@ class Chef description: "The path to the Homebrew binary.", default: "/usr/local/bin/brew" - property :owner, [String, Integer], + property :owner, String, description: "The owner of the Homebrew installation.", default: lazy { find_homebrew_username } |