summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColby Swandale <colby@taplaboratories.com>2016-11-15 19:03:09 +1100
committerColby Swandale <colby@taplaboratories.com>2016-11-15 19:03:09 +1100
commitb3a1be4819f6c6201cef8a4e7c8587da47a821c8 (patch)
tree6cdc84df37a88267e62b10c9d409e71b17ab30ef
parent8b7ef5068209d1cafea819c1f4c9efddf38e8aaf (diff)
downloadbundler-b3a1be4819f6c6201cef8a4e7c8587da47a821c8.tar.gz
fix rubocop feedback
-rw-r--r--lib/bundler/cli/install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/install.rb b/lib/bundler/cli/install.rb
index 8b212908ec..b5a54ae8b5 100644
--- a/lib/bundler/cli/install.rb
+++ b/lib/bundler/cli/install.rb
@@ -206,7 +206,7 @@ module Bundler
Bundler.settings[:path] = nil if options[:system]
Bundler.settings[:path] = "vendor/bundle" if options[:deployment]
Bundler.settings[:path] = options["path"] if options["path"]
- Bundler.settings[:path] ||= "bundle" if options["standalone"]
+ Bundler.settings[:path] ||= "bundle" if options["standalone"]
Bundler.settings[:bin] = options["binstubs"] if options["binstubs"]
Bundler.settings[:bin] = nil if options["binstubs"] && options["binstubs"].empty?