Merge pull request #20341 from Homebrew/api-source-fix

api: fix handling of source downloads
This commit is contained in:
Carlo Cabrera 2025-07-31 06:45:59 +00:00 committed by GitHub
commit e9442f5417
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ module Homebrew
if download_queue
download_queue.enqueue(download)
elsif !download.cache.exist?
elsif !download.symlink_location.exist?
download.fetch
end

View File

@ -42,7 +42,7 @@ module Homebrew
if download_queue
download_queue.enqueue(download)
elsif !download.cache.exist?
elsif !download.symlink_location.exist?
download.fetch
end