We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 083aa40 commit d695c8dCopy full SHA for d695c8d
bundler/lib/bundler/cli/install.rb
@@ -147,8 +147,11 @@ def normalize_groups
147
def normalize_settings
148
Bundler.settings.set_command_option :path, nil if options[:system]
149
Bundler.settings.set_command_option_if_given :path, options[:path]
150
- Bundler.settings.temporary(:path_relative_to_cwd => false) do
151
- Bundler.settings.set_command_option :path, "bundle" if options["standalone"] && Bundler.settings[:path].nil?
+
+ if options["standalone"] && Bundler.settings[:path].nil?
152
+ Bundler.settings.temporary(:path_relative_to_cwd => false) do
153
+ Bundler.settings.set_command_option :path, "bundle"
154
+ end
155
end
156
157
bin_option = options["binstubs"]
0 commit comments