diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-08-15 16:40:33 +0200 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-08-16 08:43:46 +0200 |
commit | 9437568ab4f4bed00a3f898057f280f99d128dd5 (patch) | |
tree | 3b19f05585e5960e076b97fdbe58644bffea0b1c /lib/bundler/shared_helpers.rb | |
parent | 79fdebd86849fd70c1d2dd6e7ad9d5e1659543e5 (diff) | |
download | bundler-9437568ab4f4bed00a3f898057f280f99d128dd5.tar.gz |
Fix bundle bin location in core repo
Diffstat (limited to 'lib/bundler/shared_helpers.rb')
-rw-r--r-- | lib/bundler/shared_helpers.rb | 2 |
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) |