mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
28 lines
668 B
Ruby
28 lines
668 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
old_trap = trap("INT") { exit! 130 }
|
|
|
|
require_relative "global"
|
|
require "debrew"
|
|
require "fcntl"
|
|
require "socket"
|
|
require "cli/parser"
|
|
require "cmd/postinstall"
|
|
|
|
begin
|
|
args = Homebrew.postinstall_args.parse
|
|
error_pipe = UNIXSocket.open(ENV.fetch("HOMEBREW_ERROR_PIPE"), &:recv_io)
|
|
error_pipe.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
|
|
|
|
trap("INT", old_trap)
|
|
|
|
formula = T.must(args.named.to_resolved_formulae.first)
|
|
formula.extend(Debrew::Formula) if args.debug?
|
|
formula.run_post_install
|
|
rescue Exception => e # rubocop:disable Lint/RescueException
|
|
error_pipe.puts e.to_json
|
|
error_pipe.close
|
|
exit! 1
|
|
end
|