postinstall: use arguments from main command.

This commit is contained in:
Mike McQuaid 2020-01-13 14:57:15 +00:00
parent a15ce054c8
commit 4babdf2a0f
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70

View File

@ -7,17 +7,10 @@ require "debrew"
require "fcntl" require "fcntl"
require "socket" require "socket"
require "cli/parser" require "cli/parser"
require "cmd/postinstall"
def postinstall_args
Homebrew::CLI::Parser.new do
switch :force
switch :verbose
switch :debug
end
end
begin begin
postinstall_args.parse Homebrew.postinstall_args.parse
error_pipe = UNIXSocket.open(ENV["HOMEBREW_ERROR_PIPE"], &:recv_io) error_pipe = UNIXSocket.open(ENV["HOMEBREW_ERROR_PIPE"], &:recv_io)
error_pipe.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC) error_pipe.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)