diff options
| author | Jack Nagel | 2013-07-28 15:38:01 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-07-28 15:38:46 -0500 |
| commit | c08b13851a9f05ba27f02ce3da52ee33b77a589d (patch) | |
| tree | 48578d245d358c10a3286d8b2cede7e5101973bd /Library | |
| parent | eafc7d6fa4f678396178a2c062db830fbd177db3 (diff) | |
| download | homebrew-c08b13851a9f05ba27f02ce3da52ee33b77a589d.tar.bz2 | |
search: silence JSON decode errors
Closes #21506.
Closes #21508.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/search.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/search.rb b/Library/Homebrew/cmd/search.rb index eec9f1474..5aab4dcbb 100644 --- a/Library/Homebrew/cmd/search.rb +++ b/Library/Homebrew/cmd/search.rb @@ -83,7 +83,7 @@ module Homebrew extend self end end results - rescue GitHub::Error + rescue GitHub::Error, Utils::JSON::Error [] end |
