summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThe Bundler Bot <bot@bundler.io>2018-07-11 03:23:42 +0000
committerColby Swandale <hello@colby.fyi>2018-08-16 21:42:28 +1000
commitc318976346670db3d9d916bfc5b866407722be7f (patch)
tree1d8b7b2be60ceda4106df6e6dc6fe4a9d2baf500
parent75035c6fe062a9e5d6061ccacc2cbe1acca80613 (diff)
downloadbundler-c318976346670db3d9d916bfc5b866407722be7f.tar.gz
Auto merge of #6621 - ralphbolo:patch-1, r=segiddins
Reword bundle update regression message This pr updates the messaging for bundle update. Fix for #6584 . (cherry picked from commit 0c6048a47014bfb3485521c066a765960d8dcc10)
-rw-r--r--lib/bundler/cli/update.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/update.rb b/lib/bundler/cli/update.rb
index 903fcb50da..b088853768 100644
--- a/lib/bundler/cli/update.rb
+++ b/lib/bundler/cli/update.rb
@@ -76,7 +76,7 @@ module Bundler
if !new_version
Bundler.ui.warn "Bundler attempted to update #{name} but it was removed from the bundle"
elsif new_version < locked_version
- Bundler.ui.warn "Bundler attempted to update #{name} but its version regressed from #{locked_version} to #{new_version}"
+ Bundler.ui.warn "Note: #{name} version regressed from #{locked_version} to #{new_version}"
elsif new_version == locked_version
Bundler.ui.warn "Bundler attempted to update #{name} but its version stayed the same"
end