summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2016-10-07 22:38:26 -0700
committerAndre Arko <andre@arko.net>2016-10-07 22:38:26 -0700
commitfe864e24c6fc8bc7bb0dac10a85d955e6a3adc2f (patch)
tree16fa84d1263bad2aa29bba67426ee9458ebce275
parentc0f7f128a55ef3165da52b44f1b82fca80de3238 (diff)
downloadbundler-fe864e24c6fc8bc7bb0dac10a85d955e6a3adc2f.tar.gz
begin/end so the indentation matches the ends
-rw-r--r--lib/bundler/fetcher/compact_index.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/fetcher/compact_index.rb b/lib/bundler/fetcher/compact_index.rb
index 76f7bc3094..7d4da7d4a8 100644
--- a/lib/bundler/fetcher/compact_index.rb
+++ b/lib/bundler/fetcher/compact_index.rb
@@ -78,7 +78,7 @@ module Bundler
private
def compact_index_client
- @compact_index_client ||=
+ @compact_index_client ||= begin
SharedHelpers.filesystem_access(cache_path) do
CompactIndexClient.new(cache_path, compact_fetcher)
end.tap do |client|
@@ -89,6 +89,7 @@ module Bundler
inputs.map { worker.deq }
end
end
+ end
end
def bundle_worker(func = nil)