brew/Library/Homebrew/postinstall.rb

32 lines
770 B
Ruby
Raw Normal View History

2020-11-23 18:45:40 +01:00
# typed: strict
# frozen_string_literal: true
raise "#{__FILE__} must not be loaded via `require`." if $PROGRAM_NAME != __FILE__
old_trap = trap("INT") { exit! 130 }
require_relative "global"
require "fcntl"
require "socket"
require "cli/parser"
require "cmd/postinstall"
begin
2024-04-01 09:53:38 -07:00
args = Homebrew::Cmd::Postinstall.new.args
2020-11-23 18:15:48 +01:00
error_pipe = UNIXSocket.open(ENV.fetch("HOMEBREW_ERROR_PIPE"), &:recv_io)
error_pipe.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
trap("INT", old_trap)
2024-04-01 09:53:38 -07:00
formula = T.must(args.named.to_resolved_formulae.first)
if args.debug?
require "debrew"
formula.extend(Debrew::Formula)
end
2016-05-27 01:53:08 -04:00
formula.run_post_install
rescue Exception => e # rubocop:disable Lint/RescueException
error_pipe.puts e.to_json
error_pipe.close
exit! 1
end