summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-15 17:01:36 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-16 08:43:51 +0200
commit096e53dfe67e437dacd0fde9ebfcee6c3a538002 (patch)
treece3a414612fb43178a63dc3c9c36c9c5e20a9484
parent028dc46f5ae617463013898a8155b2eeed2bd797 (diff)
downloadbundler-096e53dfe67e437dacd0fde9ebfcee6c3a538002.tar.gz
Use `join` consistently
-rw-r--r--spec/support/helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/helpers.rb b/spec/support/helpers.rb
index 70604d7af4..d5e2f43a9b 100644
--- a/spec/support/helpers.rb
+++ b/spec/support/helpers.rb
@@ -307,7 +307,7 @@ module Spec
else
Dir.chdir(root) { gem_command! :build, gemspec.to_s }
end
- bundler_path = root + "bundler-#{Bundler::VERSION}.gem"
+ bundler_path = root.join("bundler-#{Bundler::VERSION}.gem")
elsif g.to_s =~ %r{\A(?:[A-Z]:)?/.*\.gem\z}
g
else