summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2017-05-02 22:29:15 +0000
committerThe Bundler Bot <bot@bundler.io>2017-05-02 22:29:15 +0000
commitaf277266db3fac8c0dd52c8bb0bd2ba63ae78131 (patch)
tree9c62037198d7e0debf73ee92b2591922f004a8e2 /lib
parent1624e5775acab1b18743aabfb4ed2045d368d9e9 (diff)
parent8fce5958b8191080a1aa911fc0136b4b2e8591d5 (diff)
downloadbundler-af277266db3fac8c0dd52c8bb0bd2ba63ae78131.tar.gz
Auto merge of #5628 - mal:permit-absolute-cache-path, r=segiddins
Permit absolute paths in cache_path setting Removes check on leading `/` from `cache_path` and updates tests. Fixes #5627
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/settings.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/bundler/settings.rb b/lib/bundler/settings.rb
index 3612023cb2..d736de18aa 100644
--- a/lib/bundler/settings.rb
+++ b/lib/bundler/settings.rb
@@ -213,11 +213,7 @@ module Bundler
end
def app_cache_path
- @app_cache_path ||= begin
- path = self[:cache_path] || "vendor/cache"
- raise InvalidOption, "Cache path must be relative to the bundle path" if path.start_with?("/")
- path
- end
+ @app_cache_path ||= self[:cache_path] || "vendor/cache"
end
private