summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2018-09-24 19:56:16 -0300
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-03-09 18:25:09 +0100
commitbd01eb67f0db6fb83de7c4d7766a4489aa87c4b9 (patch)
tree5cb135970d9bd8b6b74979cde94844093b27204a
parent140b5de76f2e23fc44333d55efb689ad27a81828 (diff)
downloadbundler-bd01eb67f0db6fb83de7c4d7766a4489aa87c4b9.tar.gz
root is already a Pathname
-rw-r--r--lib/bundler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb
index 23ed848d86..99cf99199b 100644
--- a/lib/bundler.rb
+++ b/lib/bundler.rb
@@ -290,7 +290,7 @@ module Bundler
if app_config_pathname.absolute?
app_config_pathname
else
- app_config_pathname.expand_path(root)
+ root.join(app_config_pathname)
end
else
root.join(".bundle")