summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/bundler/cli.rb2
-rw-r--r--spec/bundler/cli_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index 99eaa00cf9..58a7ce491a 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -630,7 +630,7 @@ module Bundler
next unless o = current_command.options[k]
o.default == v
end
- command << Thor::Options.to_switches(options_to_print).strip
+ command << Thor::Options.to_switches(options_to_print.sort_by(&:first)).strip
command.reject!(&:empty?)
Bundler.ui.info "Running `#{command * " "}` with bundler #{Bundler::VERSION}"
end
diff --git a/spec/bundler/cli_spec.rb b/spec/bundler/cli_spec.rb
index beec88b8a6..36fd5a6e46 100644
--- a/spec/bundler/cli_spec.rb
+++ b/spec/bundler/cli_spec.rb
@@ -62,7 +62,7 @@ RSpec.describe "bundle executable" do
it "doesn't print defaults" do
install_gemfile! "", :verbose => true
- expect(out).to start_with("Running `bundle install --verbose --retry 0 --no-color` with bundler #{Bundler::VERSION}")
+ expect(out).to start_with("Running `bundle install --no-color --retry 0 --verbose` with bundler #{Bundler::VERSION}")
end
end