summaryrefslogtreecommitdiff
path: root/lib/chef/resource
diff options
context:
space:
mode:
authorThom May <thom@may.lt>2015-03-24 15:26:09 +0000
committerBryan McLellan <btm@chef.io>2015-03-27 13:36:09 -0700
commit1be4c8a3adccd9e392ca4af48f171763e06aaca9 (patch)
tree960929abc8862daec62ec263518d8357ec6cae80 /lib/chef/resource
parent312253ebfd88ac57b8433c2f859690068fe7cb14 (diff)
downloadchef-1be4c8a3adccd9e392ca4af48f171763e06aaca9.tar.gz
Ensure link's path attribute works with delayed
Closes #1769, closes #1767
Diffstat (limited to 'lib/chef/resource')
-rw-r--r--lib/chef/resource/link.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/link.rb b/lib/chef/resource/link.rb
index 8726eded1d..30f8ec86d1 100644
--- a/lib/chef/resource/link.rb
+++ b/lib/chef/resource/link.rb
@@ -85,7 +85,7 @@ class Chef
# make link quack like a file (XXX: not for public consumption)
def path
- @target_file
+ target_file
end
private