diff options
| author | Max Howell | 2009-12-19 16:22:21 +0000 |
|---|---|---|
| committer | Max Howell | 2009-12-19 16:22:21 +0000 |
| commit | 4b2e24ffcc71dc4a9e9b112873dec631b9e79afa (patch) | |
| tree | 619d64326b24b6f8539ec0276bfa23e2fc71421f | |
| parent | 3930361bb2f87779309563285f4e984e06377fe6 (diff) | |
| download | brew-4b2e24ffcc71dc4a9e9b112873dec631b9e79afa.tar.bz2 | |
Be verbose with git clones
It has useful progress information and is about 5 lines of text.
| -rw-r--r-- | Library/Homebrew/download_strategy.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index 06942cc0b..fc66e09dd 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -160,7 +160,7 @@ class GitDownloadStrategy <AbstractDownloadStrategy ohai "Cloning #{@url}" @clone=HOMEBREW_CACHE+@unique_token unless @clone.exist? - quiet_safe_system 'git', 'clone', @url, @clone + safe_system 'git', 'clone', @url, @clone # indeed, leave it verbose else puts "Updating #{@clone}" Dir.chdir(@clone) { quiet_safe_system 'git', 'fetch', @url } |
