From 79f6c7c7da6617ddbe71f8fda45ca86ab9a98feb Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Mon, 3 Apr 2023 17:35:47 -0700 Subject: [PATCH] brew style --fix --- Library/Homebrew/system_command.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/system_command.rb b/Library/Homebrew/system_command.rb index bb2de9f704..e7dea83a8f 100644 --- a/Library/Homebrew/system_command.rb +++ b/Library/Homebrew/system_command.rb @@ -200,7 +200,7 @@ class SystemCommand pid = T.let(nil, T.nilable(Integer)) raw_stdin, raw_stdout, raw_stderr, raw_wait_thr = ignore_interrupts do Open3.popen3(env, [executable, executable], *args, **options) - .tap { |*, wait_thr| pid = wait_thr.pid } + .tap { |*, wait_thr| pid = wait_thr.pid } end write_input_to(raw_stdin)