aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-12-06 20:57:23 -0500
committerJack Nagel2014-12-06 20:57:23 -0500
commit04d287e8db734a5ae4e049d708864e2c6532f1c4 (patch)
tree4a37de0919d3dec281e7fed484912525e93f5d7d /Library
parent5d811c519beee45edac5387e92f1f2bee4f72452 (diff)
downloadbrew-04d287e8db734a5ae4e049d708864e2c6532f1c4.tar.bz2
Use quiet_safe_system to silence submodule checkouts
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 c1a1945b3..af98256b9 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -595,7 +595,7 @@ class GitDownloadStrategy < VCSDownloadStrategy
def checkout_submodules(dst)
escaped_clone_path = @clone.to_s.gsub(/\//, '\/')
sub_cmd = "git checkout-index -a -f --prefix=#{dst}/${toplevel/#{escaped_clone_path}/}/$path/"
- safe_system 'git', 'submodule', '--quiet', 'foreach', '--recursive', sub_cmd
+ quiet_safe_system "git", "submodule", "foreach", "--recursive", sub_cmd
end
end