From 88f78c452328ce967b39397aac3616cc6b4a4d02 Mon Sep 17 00:00:00 2001 From: nandahkrishna Date: Wed, 17 Feb 2021 02:36:29 +0530 Subject: [PATCH] dev-cmd/bump: rescue if livecheck_result errors --- Library/Homebrew/dev-cmd/bump.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/dev-cmd/bump.rb b/Library/Homebrew/dev-cmd/bump.rb index 801c771aba..d52400fc85 100644 --- a/Library/Homebrew/dev-cmd/bump.rb +++ b/Library/Homebrew/dev-cmd/bump.rb @@ -130,6 +130,8 @@ module Homebrew return "unable to get versions" if latest.blank? latest.to_s + rescue => e + "error: #{e}" end def retrieve_pull_requests(formula_or_cask, name)