brew/Library/Homebrew/dev-cmd/update-license-data.rb
2024-01-31 20:02:33 -08:00

35 lines
761 B
Ruby

# typed: true
# frozen_string_literal: true
require "cli/parser"
require "utils/spdx"
require "system_command"
module Homebrew
extend SystemCommand::Mixin
sig { returns(CLI::Parser) }
def self.update_license_data_args
Homebrew::CLI::Parser.new do
description <<~EOS
Update SPDX license data in the Homebrew repository.
EOS
named_args :none
end
end
def self.update_license_data
update_license_data_args.parse
SPDX.download_latest_license_data!
diff = system_command "git", args: [
"-C", HOMEBREW_REPOSITORY, "diff", "--exit-code", SPDX::DATA_PATH
]
if diff.status.success?
ofail "No changes to SPDX license data."
else
puts "SPDX license data updated."
end
end
end