aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/download_strategy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 6271ff34c..17ee4e511 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -333,7 +333,7 @@ class GitDownloadStrategy < AbstractDownloadStrategy
if @clone.exist?
Dir.chdir(@clone) do
# Check for interupted clone from a previous install
- unless system @@git, 'status', '-s'
+ unless quiet_system @@git, 'status', '-s'
puts "Removing invalid .git repo from cache"
FileUtils.rm_rf @clone
end