summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Arko <mail@arko.net>2015-05-04 19:12:59 -0700
committerAndré Arko <mail@arko.net>2015-05-04 19:12:59 -0700
commitd8df35c18db3c300e8191d53eb06c6437876d948 (patch)
treeb62e48bf83ec59fd331f959c7df50719fb98e779
parent94be4481dd55c7c0a562edcdc72d28b7bba3b500 (diff)
parentc7e5a7d7488947f67858b87d5bbb3597cca5d16a (diff)
downloadbundler-d8df35c18db3c300e8191d53eb06c6437876d948.tar.gz
Merge pull request #3616 from tenderlove/options
set `@wrappers` and `@env_shebang` to true
-rw-r--r--lib/bundler/source/path/installer.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/source/path/installer.rb b/lib/bundler/source/path/installer.rb
index 6f264489fb..a3e71e37a4 100644
--- a/lib/bundler/source/path/installer.rb
+++ b/lib/bundler/source/path/installer.rb
@@ -11,8 +11,8 @@ module Bundler
@gem_bin_dir = "#{Bundler.rubygems.gem_dir}/bin"
@bin_dir = Bundler.requires_sudo? ? @tmp_bin_dir : @gem_bin_dir
@gem_dir = Bundler.rubygems.path(spec.full_gem_path)
- @wrappers = options[:wrappers] || true
- @env_shebang = options[:env_shebang] || true
+ @wrappers = true
+ @env_shebang = true
@format_executable = options[:format_executable] || false
@build_args = options[:build_args] || Bundler.rubygems.build_args
end