Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Commit

Permalink
Revert "Migrate requires from exe/ to also be relative"
Browse files Browse the repository at this point in the history
This reverts commit d9d2bf6.
  • Loading branch information
deivid-rodriguez committed Jun 20, 2019
1 parent 0b5da91 commit 632136b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exe/bundle
Expand Up @@ -7,7 +7,7 @@ Signal.trap("INT") do
exit 1
end

require_relative "../lib/bundler"
require "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
Expand All @@ -18,9 +18,9 @@ $LOAD_PATH.each do |path|
abort(err)
end

require_relative "../lib/bundler/friendly_errors"
require "bundler/friendly_errors"
Bundler.with_friendly_errors do
require_relative "../lib/bundler/cli"
require "bundler/cli"

# Allow any command to use --help flag to show help for that command
help_flags = %w[--help -h]
Expand Down

0 comments on commit 632136b

Please sign in to comment.