Homebrew::API::fetch_file_source: remove debug line

This commit is contained in:
Rylan Polster 2023-02-03 11:48:02 +01:00
parent b009077c14
commit c30b489525
No known key found for this signature in database
GPG Key ID: 46A744940CFF4D64

View File

@ -62,7 +62,6 @@ module Homebrew
return cache[endpoint] if cache.present? && cache.key?(endpoint)
raw_url = "https://raw.githubusercontent.com/#{repo}/#{endpoint}"
puts "Fetching #{raw_url}..."
output = Utils::Curl.curl_output("--fail", raw_url, max_time: 5)
raise ArgumentError, "No file found at #{Tty.underline}#{raw_url}#{Tty.reset}" unless output.success?