From 9db79ce24704b07b7a9c7c566d81fae28dd29745 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Thu, 10 Jun 2021 14:51:19 -0400 Subject: [PATCH] LocalBottleDownloadStrategy: extend Pourable --- Library/Homebrew/download_strategy.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index d0c755ed57..eb739212ab 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -651,6 +651,7 @@ end class LocalBottleDownloadStrategy < AbstractFileDownloadStrategy def initialize(path) # rubocop:disable Lint/MissingSuper @cached_location = path + extend Pourable end end