From f71287c4a9589d8926f53ca235ff3931e6abe2b9 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Tue, 17 Jun 2025 16:57:50 -0400 Subject: [PATCH] Fix type mismatch in `brew info` --- Library/Homebrew/cmd/info.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb index 62fcb63242..e1dc53481b 100644 --- a/Library/Homebrew/cmd/info.rb +++ b/Library/Homebrew/cmd/info.rb @@ -266,7 +266,7 @@ module Homebrew cask.sourcefile_path.relative_path_from(tap.path) end - github_remote_path(tap.remote, path) + github_remote_path(tap.remote, path.to_s) end sig { params(formula: Formula).void }