зеркало из https://github.com/github/ruby.git
[bundler/bundler] Migrate requires from exe/ to also be relative
https://github.com/bundler/bundler/commit/d9d2bf6d52
This commit is contained in:
Родитель
9596f43250
Коммит
a27198f648
|
@ -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]
|
||||
|
|
Загрузка…
Ссылка в новой задаче