diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-08-09 12:31:01 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-08-16 18:41:25 -0700 |
commit | 498d60207ce6664f0ca807b3f7a4690b3097014c (patch) | |
tree | 2bf61e71d06b1a577c1b984765c20a0f64ec8ccf /lib/chef/cookbook_uploader.rb | |
parent | e792cfd2df516c13ae5ca6ce1eed2b8e10628581 (diff) | |
download | chef-498d60207ce6664f0ca807b3f7a4690b3097014c.tar.gz |
autofixing Style/SpaceBeforeSemicolon cop
Diffstat (limited to 'lib/chef/cookbook_uploader.rb')
-rw-r--r-- | lib/chef/cookbook_uploader.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/cookbook_uploader.rb b/lib/chef/cookbook_uploader.rb index 95c27799ec..bb75234563 100644 --- a/lib/chef/cookbook_uploader.rb +++ b/lib/chef/cookbook_uploader.rb @@ -55,7 +55,7 @@ class Chef checksum_files.merge!(cb.checksums) end - checksums = checksum_files.inject({}) { |memo, elt| memo[elt.first] = nil ; memo } + checksums = checksum_files.inject({}) { |memo, elt| memo[elt.first] = nil; memo } new_sandbox = rest.post("sandboxes", { :checksums => checksums }) Chef::Log.info("Uploading files") |