Merge pull request #11524 from Rylan12/local-bottles-pourable

LocalBottleDownloadStrategy: extend Pourable
This commit is contained in:
Rylan Polster 2021-06-11 17:02:11 -04:00 committed by GitHub
commit c9fdeccbe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -651,6 +651,7 @@ end
class LocalBottleDownloadStrategy < AbstractFileDownloadStrategy class LocalBottleDownloadStrategy < AbstractFileDownloadStrategy
def initialize(path) # rubocop:disable Lint/MissingSuper def initialize(path) # rubocop:disable Lint/MissingSuper
@cached_location = path @cached_location = path
extend Pourable
end end
end end