Merge pull request #13798 from max-ae/fix/generate-completion-none

generate_completions: fix `shell_parameter_format: :none`
This commit is contained in:
Rylan Polster 2022-09-02 19:27:57 -04:00 committed by GitHub
commit f765382cb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1745,14 +1745,14 @@ class Formula
elsif shell_parameter_format == :arg
"--shell=#{shell}"
elsif shell_parameter_format == :none
""
nil
else
"#{shell_parameter_format}#{shell}"
end
popen_read_args = %w[]
popen_read_args << commands
popen_read_args << shell_parameter
popen_read_args << shell_parameter if shell_parameter.present?
popen_read_args.flatten!
script_path.dirname.mkpath