diff options
author | Tim Smith <tsmith@chef.io> | 2018-11-15 13:10:04 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-11-15 13:10:04 -0800 |
commit | b5da9b99fc53641cef96fbe0b8cce304efacc9db (patch) | |
tree | 51dd7ac7532df29ceb91dca0627b03f1017d04df /lib/chef/provider/execute.rb | |
parent | 5991cd84731a5c22e4ad411c38334b506d07ab9a (diff) | |
download | chef-attribute_is_property.tar.gz |
Replace several uses of attribute with property in resourcesattribute_is_property
We were still calling things attributes when they're actually properties. This fixes some documentation and error messages.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/provider/execute.rb')
-rw-r--r-- | lib/chef/provider/execute.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/execute.rb b/lib/chef/provider/execute.rb index 1b97dbf464..02db7cb593 100644 --- a/lib/chef/provider/execute.rb +++ b/lib/chef/provider/execute.rb @@ -37,7 +37,7 @@ class Chef def define_resource_requirements if creates && creates_relative? && !cwd # FIXME? move this onto the resource? - raise Chef::Exceptions::Execute, "Please either specify a full path for the creates attribute, or specify a cwd property to the #{new_resource} resource" + raise Chef::Exceptions::Execute, "Please either specify a full path for the creates property, or specify a cwd property to the #{new_resource} resource" end end |