From dccedbf104563b1d10cba1219c31a78280ea57ca Mon Sep 17 00:00:00 2001 From: Mike McQuaid <mike@mikemcquaid.com> Date: Mon, 16 Dec 2019 11:34:31 +0000 Subject: [PATCH] download_strategy: use (more consistent) TypeError. Rather than a base `RuntimeError`. Fixes https://github.com/Homebrew/brew/issues/6839 --- Library/Homebrew/download_strategy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index e6e772d2a7..58b78ec499 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -1122,7 +1122,7 @@ class DownloadStrategyDetector when :post then CurlPostDownloadStrategy when :fossil then FossilDownloadStrategy else - raise "Unknown download strategy #{symbol} was requested." + raise TypeError, "Unknown download strategy #{symbol} was requested." end end end -- GitLab