brew/Library/Homebrew/dev-cmd/update-license-data.rb
Mike McQuaid 7da934f7e2
Deprecate/disable/delete code.
The next release after this is merged will be 4.1.0.

Co-authored-by: Markus Reiter <me@reitermark.us>
2023-07-06 16:56:20 +01:00

37 lines
771 B
Ruby

# typed: true
# frozen_string_literal: true
require "cli/parser"
require "utils/spdx"
require "system_command"
module Homebrew
include SystemCommand::Mixin
module_function
sig { returns(CLI::Parser) }
def 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 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