diff options
| author | Mike McQuaid | 2016-08-11 14:27:28 +0100 |
|---|---|---|
| committer | GitHub | 2016-08-11 14:27:28 +0100 |
| commit | 44a80e693a0dc0b28b4814b2897a9cc1cdd544c2 (patch) | |
| tree | acf520301f6b292cdc81c63d6ecf035e1c9959f3 /Library | |
| parent | 24b5db53672843647da29073060bff3f81b05b90 (diff) | |
| parent | 0b8eab8dac9586288b23160a93da3a72536e380d (diff) | |
| download | brew-44a80e693a0dc0b28b4814b2897a9cc1cdd544c2.tar.bz2 | |
Merge pull request #692 from MikeMcQuaid/formula_versions_hide_stderr
formula_versions: also silence stderr.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula_versions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_versions.rb b/Library/Homebrew/formula_versions.rb index de285b642..b6836eada 100644 --- a/Library/Homebrew/formula_versions.rb +++ b/Library/Homebrew/formula_versions.rb @@ -34,7 +34,7 @@ class FormulaVersions contents = file_contents_at_revision(rev) begin - nostdout { yield Formulary.from_contents(name, path, contents) } + shutup { yield Formulary.from_contents(name, path, contents) } rescue *IGNORED_EXCEPTIONS => e # We rescue these so that we can skip bad versions and # continue walking the history |
