Skip to content
Snippets Groups Projects
Commit 23c869af authored by Samuel Cochran's avatar Samuel Cochran Committed by Jack Nagel
Browse files

Cater to download strategies not yielding a file


Closes Homebrew/homebrew#22580.

Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
parent 84cbfb16
No related branches found
No related tags found
No related merge requests found
......@@ -611,7 +611,7 @@ class Formula
def stage
fetched = fetch
verify_download_integrity(fetched) if fetched.file?
verify_download_integrity(fetched) if fetched.respond_to?(:file?) and fetched.file?
mktemp do
downloader.stage
# Set path after the downloader changes the working folder.
......
......@@ -25,7 +25,7 @@ class Resource
# A target or a block must be given, but not both
def stage(target=nil)
fetched = fetch
verify_download_integrity(fetched) if fetched.file?
verify_download_integrity(fetched) if fetched.respond_to?(:file?) and fetched.file?
mktemp do
@downloader.stage
if block_given?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment