mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[bundler/bundler] Migrate requires from exe/ to also be relative
https://github.com/bundler/bundler/commit/d9d2bf6d52
This commit is contained in:
parent
9596f43250
commit
a27198f648
1 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ Signal.trap("INT") do
|
|||
exit 1
|
||||
end
|
||||
|
||||
require "bundler"
|
||||
require_relative "../lib/bundler"
|
||||
# Check if an older version of bundler is installed
|
||||
$LOAD_PATH.each do |path|
|
||||
next unless path =~ %r{/bundler-0\.(\d+)} && $1.to_i < 9
|
||||
|
@ -18,9 +18,9 @@ $LOAD_PATH.each do |path|
|
|||
abort(err)
|
||||
end
|
||||
|
||||
require "bundler/friendly_errors"
|
||||
require_relative "../lib/bundler/friendly_errors"
|
||||
Bundler.with_friendly_errors do
|
||||
require "bundler/cli"
|
||||
require_relative "../lib/bundler/cli"
|
||||
|
||||
# Allow any command to use --help flag to show help for that command
|
||||
help_flags = %w[--help -h]
|
||||
|
|
Loading…
Add table
Reference in a new issue