From cf040149c4642659c378bc231d3b210c290d1ee8 Mon Sep 17 00:00:00 2001 From: Melvyn Depeyrot Date: Wed, 2 Oct 2019 07:03:13 -0700 Subject: [PATCH] Respect ARGV.verbose Co-Authored-By: Mike McQuaid --- Library/Homebrew/download_strategy.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index 7582447e58..4735f5339e 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -549,7 +549,8 @@ class SubversionDownloadStrategy < VCSDownloadStrategy # Use "svn update" when the repository already exists locally. # This saves on bandwidth and will have a similar effect to verifying the # cache as it will make any changes to get the right revision. - args = ["--quiet"] + args = [] + args << "--quiet" unless ARGV.verbose? if revision ohai "Checking out #{@ref}"