diff options
author | Samuel Giddins <segiddins@segiddins.me> | 2017-06-03 14:56:31 -0500 |
---|---|---|
committer | Samuel Giddins <segiddins@segiddins.me> | 2017-06-13 13:16:58 -0500 |
commit | 4337a499d0108fc3748084934aaed7591b355a26 (patch) | |
tree | 099dcf59f533ec5d0a3e40e2a1aec6959f03850e /lib/bundler/cli | |
parent | e8fd5795778379bd821e34173b678f76f240fa97 (diff) | |
download | bundler-4337a499d0108fc3748084934aaed7591b355a26.tar.gz |
Ensure Bundler.original_env preserves _all_ keys bundler setsseg-original-env-all-keys
Diffstat (limited to 'lib/bundler/cli')
-rw-r--r-- | lib/bundler/cli/install.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/install.rb b/lib/bundler/cli/install.rb index a6132751db..d57cad1e3f 100644 --- a/lib/bundler/cli/install.rb +++ b/lib/bundler/cli/install.rb @@ -25,7 +25,7 @@ module Bundler normalize_groups - ENV["RB_USER_INSTALL"] = "1" if Bundler::FREEBSD + Bundler::SharedHelpers.set_env "RB_USER_INSTALL", "1" if Bundler::FREEBSD # Disable color in deployment mode Bundler.ui.shell = Thor::Shell::Basic.new if options[:deployment] |