brew/Library/Homebrew/dev-cmd/update-license-data.rb
2020-10-10 14:59:39 +02:00

34 lines
914 B
Ruby

# typed: false
# frozen_string_literal: true
require "cli/parser"
require "utils/spdx"
module Homebrew
module_function
def update_license_data_args
Homebrew::CLI::Parser.new do
usage_banner <<~EOS
`update-license-data` [<options>]
Update SPDX license data in the Homebrew repository.
EOS
switch "--fail-if-not-changed",
description: "Return a failing status code if current license data's version is the same as " \
"the upstream. This can be used to notify CI when the SPDX license data is out of date."
max_named 0
end
end
def update_license_data
args = update_license_data_args.parse
ohai "Updating SPDX license data..."
SPDX.download_latest_license_data!
return unless args.fail_if_not_changed?
Homebrew.failed = system("git", "diff", "--stat", "--exit-code", SPDX::DATA_PATH)
end
end