From a27198f64850441688ae77d329eab66049d0f5e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Sat, 8 Jun 2019 21:41:04 +0200 Subject: [bundler/bundler] Migrate requires from exe/ to also be relative https://github.com/bundler/bundler/commit/d9d2bf6d52 --- libexec/bundle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libexec') diff --git a/libexec/bundle b/libexec/bundle index aaf773745d..fccece038b 100755 --- a/libexec/bundle +++ b/libexec/bundle @@ -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] -- cgit v1.2.1