From f973bea35ce988e797971627f84efaca9eff3afd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 1 Sep 2025 10:57:39 +0000 Subject: [PATCH] Remove obvious comments as requested in review Co-authored-by: MikeMcQuaid <125011+MikeMcQuaid@users.noreply.github.com> --- Library/Homebrew/dev-cmd/unpack.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Library/Homebrew/dev-cmd/unpack.rb b/Library/Homebrew/dev-cmd/unpack.rb index f7066bae09..2df805761b 100644 --- a/Library/Homebrew/dev-cmd/unpack.rb +++ b/Library/Homebrew/dev-cmd/unpack.rb @@ -114,14 +114,12 @@ module Homebrew download = Cask::Download.new(cask, quarantine: true) - # Check if already downloaded to avoid unnecessary fetch output if download.downloaded? downloaded_path = download.cached_download else downloaded_path = download.fetch(quiet: false) end - # Extract to destination stage_dir.mkpath UnpackStrategy.detect(downloaded_path).extract_nestedly(to: stage_dir, verbose: true) end