diff options
| author | Yuta Saito <kateinoigakukun@gmail.com> | 2024-06-17 13:45:48 +0000 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-06-18 00:59:37 +0000 |
| commit | d9141920121158f78c260b67b7a0c3d675865ebd (patch) | |
| tree | fa40a1f403c96d373f739fad1d346d3ffaa18429 | |
| parent | 97a23db5acc87c3a44bd005aef00c8003f45adb4 (diff) | |
[rubygems/rubygems] Use symbol for option key in Bundler::CLI::Install
https://github.com/rubygems/rubygems/commit/07a5faeb89
| -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 8e53728f34..fbe6b587d4 100644 --- a/lib/bundler/cli/install.rb +++ b/lib/bundler/cli/install.rb @@ -19,7 +19,7 @@ module Bundler # Disable color in deployment mode Bundler.ui.shell = Thor::Shell::Basic.new if options[:deployment] - if target_rbconfig_path = options["target-rbconfig"] + if target_rbconfig_path = options[:"target-rbconfig"] Bundler.rubygems.set_target_rbconfig(target_rbconfig_path) end |
