summaryrefslogtreecommitdiff
path: root/lib/bundler/fetcher/compact_index.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-12-28 10:54:28 +0800
committerSamuel Giddins <segiddins@segiddins.me>2016-01-25 10:49:51 -0600
commit970e1e4b34325bd6ece91c6fddc7045899cfc3e3 (patch)
tree846fd924a7ec8253e31560d6bfde0e383053215e /lib/bundler/fetcher/compact_index.rb
parent6364926e3e44298314ad6cff748924436596a3a8 (diff)
downloadbundler-970e1e4b34325bd6ece91c6fddc7045899cfc3e3.tar.gz
address feedback from @segiddins
Diffstat (limited to 'lib/bundler/fetcher/compact_index.rb')
-rw-r--r--lib/bundler/fetcher/compact_index.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/bundler/fetcher/compact_index.rb b/lib/bundler/fetcher/compact_index.rb
index 8db7a3efad..9c65808890 100644
--- a/lib/bundler/fetcher/compact_index.rb
+++ b/lib/bundler/fetcher/compact_index.rb
@@ -69,7 +69,9 @@ module Bundler
downloader.fetch(fetch_uri + path, headers)
end
- CompactIndexClient.new(Bundler.user_cache + "compact_index" + uri_part, compact_fetcher)
+ Bundler.filesystem_access do
+ CompactIndexClient.new(Bundler.user_cache + "compact_index" + uri_part, compact_fetcher)
+ end
end
end
end