summaryrefslogtreecommitdiff
path: root/lib/chef/chef_fs/file_system/repository/directory.rb
diff options
context:
space:
mode:
authordanielsdeleo <dan@chef.io>2016-02-16 13:56:04 -0800
committerdanielsdeleo <dan@chef.io>2016-02-16 15:26:43 -0800
commitb466688fa006f28cadf85e4373d90aa5a73b1a32 (patch)
tree05d6ad7aed2e70447b6a637708fc86d9bf15a96f /lib/chef/chef_fs/file_system/repository/directory.rb
parentb56288f5cf2cd9067223af2aadfc5f1fc3c98cba (diff)
downloadchef-b466688fa006f28cadf85e4373d90aa5a73b1a32.tar.gz
Fix new chefstyle issues
Diffstat (limited to 'lib/chef/chef_fs/file_system/repository/directory.rb')
-rw-r--r--lib/chef/chef_fs/file_system/repository/directory.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/chef_fs/file_system/repository/directory.rb b/lib/chef/chef_fs/file_system/repository/directory.rb
index ac1ac0a852..898f3847c4 100644
--- a/lib/chef/chef_fs/file_system/repository/directory.rb
+++ b/lib/chef/chef_fs/file_system/repository/directory.rb
@@ -31,7 +31,7 @@ class Chef
def initialize(name, parent, file_path = nil)
@parent = parent
@name = name
- @path = Chef::ChefFS::PathUtils::join(parent.path, name)
+ @path = Chef::ChefFS::PathUtils.join(parent.path, name)
@file_path = file_path || "#{parent.file_path}/#{name}"
end