diff options
author | Bernado Vale <bernardosilveiravale@gmail.com> | 2017-04-21 17:30:55 -0300 |
---|---|---|
committer | Bernado Vale <bernardosilveiravale@gmail.com> | 2017-04-21 17:30:55 -0300 |
commit | 248950845e09996a6f2efd1b0af5a8473fda7452 (patch) | |
tree | d1c75cb061d8b7b3bbb408a2660d5c26eb2def86 /lib/chef/provider/execute.rb | |
parent | 1cdcff04eb1f0681a778a4e5197865f81fe8abf0 (diff) | |
download | chef-248950845e09996a6f2efd1b0af5a8473fda7452.tar.gz |
fixing small typo
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 101d7c4c06..e227528918 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 propoerty to the #{new_resource} 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" end end |