summaryrefslogtreecommitdiff
path: root/lib/chef/resource
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2015-09-01 19:29:53 -0700
committerJohn Keiser <john@johnkeiser.com>2015-09-01 19:31:04 -0700
commita8d5109721deb5d90687f38e10bb37765a5ac65a (patch)
tree2e05374221cb5e6df5b52e6eab45af849e718929 /lib/chef/resource
parentb7afa0ffca2d160b3dfc5c3b1a5e714bf15e0296 (diff)
downloadchef-a8d5109721deb5d90687f38e10bb37765a5ac65a.tar.gz
Make file verification deprecation print the proper source locjk/dedup-messages
Diffstat (limited to 'lib/chef/resource')
-rw-r--r--lib/chef/resource/file/verification.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/chef/resource/file/verification.rb b/lib/chef/resource/file/verification.rb
index ba0bb08201..9b0788fad3 100644
--- a/lib/chef/resource/file/verification.rb
+++ b/lib/chef/resource/file/verification.rb
@@ -110,7 +110,8 @@ class Chef
# is interpolated. Until `file` can be deprecated, interpolate both.
Chef.log_deprecation(
'%{file} is deprecated in verify command and will not be '\
- 'supported in Chef 13. Please use %{path} instead.'
+ 'supported in Chef 13. Please use %{path} instead.',
+ caller(2..2)[0]
) if @command.include?('%{file}')
command = @command % {:file => path, :path => path}
interpreter = Chef::GuardInterpreter.for_resource(@parent_resource, command, @command_opts)