diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index e09bbc73f2..6af7a96693 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -1316,12 +1316,12 @@ class FossilDownloadStrategy < VCSDownloadStrategy sig { params(timeout: T.nilable(Time)).void } def clone_repo(timeout: nil) - silent_command! "fossil", args: ["clone", @url, cached_location], timeout: timeout&.remaining + command! "fossil", args: ["clone", @url, cached_location], timeout: timeout&.remaining end sig { params(timeout: T.nilable(Time)).void } def update(timeout: nil) - silent_command! "fossil", args: ["pull", "-R", cached_location], timeout: timeout&.remaining + command! "fossil", args: ["pull", "-R", cached_location], timeout: timeout&.remaining end end