summaryrefslogtreecommitdiff
path: root/lib/bundler/shared_helpers.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-15 16:40:33 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-17 17:08:49 +0900
commit63575409458f6b7b1bdaf038a562bc3f011e231e (patch)
tree977c2ba002440b38c8e68c6cbcd3aa11760229db /lib/bundler/shared_helpers.rb
parent7551117c70cdc33f4dd8a72a1a9151f23c73f902 (diff)
[bundler/bundler] Fix bundle bin location in core repo
https://github.com/bundler/bundler/commit/9437568ab4
Diffstat (limited to 'lib/bundler/shared_helpers.rb')
-rw-r--r--lib/bundler/shared_helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/shared_helpers.rb b/lib/bundler/shared_helpers.rb
index af1836009f..a9bfd57fae 100644
--- a/lib/bundler/shared_helpers.rb
+++ b/lib/bundler/shared_helpers.rb
@@ -304,7 +304,7 @@ module Bundler
exe_file = File.expand_path("../../../exe/bundle", __FILE__)
# for Ruby core repository testing
- exe_file = File.expand_path("../../../bin/bundle", __FILE__) unless File.exist?(exe_file)
+ exe_file = File.expand_path("../../../libexec/bundle", __FILE__) unless File.exist?(exe_file)
# bundler is a default gem, exe path is separate
exe_file = Bundler.rubygems.bin_path("bundler", "bundle", VERSION) unless File.exist?(exe_file)