summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosef Šimánek <josef.simanek@gmail.com>2013-12-02 13:08:01 +0100
committerJosef Šimánek <josef.simanek@gmail.com>2013-12-02 13:13:49 +0100
commit6185c36bffac462958e44806ee8cd3e71627408e (patch)
treee2585ea134fd30c5f779a6ebaae7e72fa5ef0f81
parent99140653143fee725be9c31503a2c361a174d205 (diff)
downloadbundler-6185c36bffac462958e44806ee8cd3e71627408e.tar.gz
Highlight git update in bundle update.
-rw-r--r--CHANGELOG.md1
-rw-r--r--lib/bundler/source/git/git_proxy.rb2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6933326d52..8b78f98f7b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,7 @@ Features:
- add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
- highlight installing logs (#2722, @yaotti)
+ - highlight updating logs (#2741, @simi)
## 1.5.0.rc.1 (2013-11-09)
diff --git a/lib/bundler/source/git/git_proxy.rb b/lib/bundler/source/git/git_proxy.rb
index 79c8a33404..2fe1da643c 100644
--- a/lib/bundler/source/git/git_proxy.rb
+++ b/lib/bundler/source/git/git_proxy.rb
@@ -61,7 +61,7 @@ module Bundler
def checkout
if path.exist?
return if has_revision_cached?
- Bundler.ui.info "Updating #{uri}"
+ Bundler.ui.confirm "Updating #{uri}"
in_path do
git %|fetch --force --quiet --tags #{uri_escaped} "refs/heads/*:refs/heads/*"|
end