From 807709622b23741941547f8f478b0d059b35105a Mon Sep 17 00:00:00 2001 From: Carlo Cabrera Date: Mon, 3 Mar 2025 20:07:13 +0800 Subject: [PATCH] formula: remove `pwsh` from default completion shells Fixes https://github.com/Homebrew/brew/pull/19407#issuecomment-2694083829 --- Library/Homebrew/formula.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index c37069e8bc..353fa3d80a 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -2102,7 +2102,7 @@ class Formula } def generate_completions_from_executable(*commands, base_name: nil, - shells: [:bash, :zsh, :fish, :pwsh], + shells: [:bash, :zsh, :fish], shell_parameter_format: nil) executable = commands.first.to_s base_name ||= File.basename(executable) if executable.start_with?(bin.to_s, sbin.to_s)