summaryrefslogtreecommitdiff
path: root/lib/chef/cookbook/chefignore.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-11-15 15:09:41 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2016-12-06 13:08:26 -0800
commit7a3ca23fd977ca4f894cba54f76d64a77562f012 (patch)
tree8cef2b7321c8e7fa512b4316f0a2ac1a6673de50 /lib/chef/cookbook/chefignore.rb
parentde36073edd22dbf3dbc5c42fde262ae9b81dd783 (diff)
downloadchef-7a3ca23fd977ca4f894cba54f76d64a77562f012.tar.gz
fix Style/VariableInterpolation
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/cookbook/chefignore.rb')
-rw-r--r--lib/chef/cookbook/chefignore.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/cookbook/chefignore.rb b/lib/chef/cookbook/chefignore.rb
index 71ef53c9e5..dce58ecdb8 100644
--- a/lib/chef/cookbook/chefignore.rb
+++ b/lib/chef/cookbook/chefignore.rb
@@ -52,7 +52,7 @@ class Chef
ignore_globs << line.strip unless line =~ COMMENTS_AND_WHITESPACE
end
else
- Chef::Log.debug("No chefignore file found at #@ignore_file no files will be ignored")
+ Chef::Log.debug("No chefignore file found at #{@ignore_file} no files will be ignored")
end
ignore_globs
end