diff options
| author | Jack Nagel | 2014-12-06 20:57:23 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-12-06 20:57:23 -0500 |
| commit | abe06c52b94f0b607d61e5335d9d5a14ea2e704d (patch) | |
| tree | 346a9bb3060b06cd9c9ac5b795106d0d615d9de8 /Library/Homebrew/download_strategy.rb | |
| parent | 5e77444b8e8af42859cb4b35387543f40de625ce (diff) | |
| download | homebrew-abe06c52b94f0b607d61e5335d9d5a14ea2e704d.tar.bz2 | |
Use quiet_safe_system to silence submodule updates
Diffstat (limited to 'Library/Homebrew/download_strategy.rb')
| -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 af98256b9..b6c652b8c 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -589,7 +589,7 @@ class GitDownloadStrategy < VCSDownloadStrategy end def update_submodules - safe_system 'git', 'submodule', 'update', '--init', '--recursive' + quiet_safe_system "git", "submodule", "update", "--init", "--recursive" end def checkout_submodules(dst) |
