summaryrefslogtreecommitdiff
path: root/lib/chef/cookbook_manifest.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/cookbook_manifest.rb')
-rw-r--r--lib/chef/cookbook_manifest.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/cookbook_manifest.rb b/lib/chef/cookbook_manifest.rb
index b16eeccbca..2005c67a5c 100644
--- a/lib/chef/cookbook_manifest.rb
+++ b/lib/chef/cookbook_manifest.rb
@@ -192,7 +192,7 @@ class Chef
def by_parent_directory
@by_parent_directory ||=
- manifest[:all_files].inject({}) do |memo, file|
+ manifest[:all_files].inject({}) { |memo, file|
parts = file[:name].split("/")
parent = if parts.length == 1
"root_files"
@@ -203,7 +203,7 @@ class Chef
memo[parent] ||= []
memo[parent] << file
memo
- end
+ }
end
def root_files