From 3701081b65cbfd09024b95b0de2e154a3ba7478d Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Mon, 18 Feb 2013 18:12:14 -0600 Subject: [PATCH] brew-mirror-check: fix error handling --- Library/Contributions/cmd/brew-mirror-check.rb | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Library/Contributions/cmd/brew-mirror-check.rb b/Library/Contributions/cmd/brew-mirror-check.rb index 821a625260..ed8e5364f6 100755 --- a/Library/Contributions/cmd/brew-mirror-check.rb +++ b/Library/Contributions/cmd/brew-mirror-check.rb @@ -12,13 +12,10 @@ class Formula tarball_path = downloader.tarball_path tarball_path.unlink if tarball_path.exist? - begin - fetched = downloader.fetch - rescue DownloadError => e - opoo "Failed to fetch from URL: #{url}" - return - end - + fetched = downloader.fetch + rescue StandardError + opoo "Failed to fetch from URL: #{url}" + else verify_download_integrity fetched if fetched.kind_of? Pathname end end