From 8a4cac02385571663ed055d3f3321c9c1cf8cbc5 Mon Sep 17 00:00:00 2001 From: Eric Knibbe Date: Sat, 21 Jun 2025 10:13:39 -0400 Subject: [PATCH] download_strategy: fix `cvs` checkouts --- Library/Homebrew/download_strategy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index 23007362d0..6f52c2b6db 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -1350,7 +1350,7 @@ class CVSDownloadStrategy < VCSDownloadStrategy end command! "cvs", - args: [*quiet_flag, "-d", @url, "checkout", "-d", cached_location.basename, @module], + args: [*quiet_flag, "-d", @url, "checkout", "-d", basename.to_s, @module], chdir: cached_location.dirname, timeout: Utils::Timer.remaining(timeout) end