diff options
author | Colby Swandale <colby@taplaboratories.com> | 2016-11-14 21:47:27 +1100 |
---|---|---|
committer | Colby Swandale <colby@taplaboratories.com> | 2016-11-14 21:47:27 +1100 |
commit | 3417e2dec27c64b971facb218003b344f1ec6f69 (patch) | |
tree | 361da7678344bf55b173f93db4d8cbee35ef2fd7 /lib | |
parent | c542198aefcaaa9ef0574c0a4b0b889b5d91b0b2 (diff) | |
download | bundler-3417e2dec27c64b971facb218003b344f1ec6f69.tar.gz |
fix small alignment
Diffstat (limited to 'lib')
-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 5d02bea9f4..39a94dc9fa 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? |