From c30b4895255cbf33d5c461ee0830dd7ad4d27588 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Fri, 3 Feb 2023 11:48:02 +0100 Subject: [PATCH] `Homebrew::API::fetch_file_source`: remove debug line --- Library/Homebrew/api.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/Homebrew/api.rb b/Library/Homebrew/api.rb index 49bb507b1d..3fb56ed076 100644 --- a/Library/Homebrew/api.rb +++ b/Library/Homebrew/api.rb @@ -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?