summaryrefslogtreecommitdiff
path: root/exe
diff options
context:
space:
mode:
authorBoggs <hello@boggs.xyz>2016-06-29 19:00:06 +0800
committerBoggs <hello@boggs.xyz>2016-07-03 11:36:10 +0800
commit2894378f018af36c9f0682f7032e934b76edc29f (patch)
tree16075afc8255d595912ae172771fe73db5f71752 /exe
parent5d24e18c110ba7fb210d9c29f931754466b7f2ea (diff)
downloadbundler-2894378f018af36c9f0682f7032e934b76edc29f.tar.gz
Make `bundler` and `bundle` executables have the same functionality
Diffstat (limited to 'exe')
-rwxr-xr-xexe/bundler20
1 files changed, 1 insertions, 19 deletions
diff --git a/exe/bundler b/exe/bundler
index af6c03e12e..d9131fe834 100755
--- a/exe/bundler
+++ b/exe/bundler
@@ -1,22 +1,4 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
-# Exit cleanly from an early interrupt
-Signal.trap("INT") { exit 1 }
-
-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
- err = String.new
- err << "Looks like you have a version of bundler that's older than 0.9.\n"
- err << "Please remove your old versions.\n"
- err << "An easy way to do this is by running `gem cleanup bundler`."
- abort(err)
-end
-
-require "bundler/friendly_errors"
-Bundler.with_friendly_errors do
- require "bundler/cli"
- Bundler::CLI.start(ARGV, :debug => true)
-end
+load File.expand_path("../bundle", __FILE__)