Merge pull request #8287 from SeekingMeaning/spdx/fix-latest_tag-error

update-license-data: fix latest_tag error
This commit is contained in:
Mike McQuaid 2020-08-11 09:01:08 +01:00 committed by GitHub
commit b8f1cf3561
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -35,6 +35,6 @@ module Homebrew
ohai "git add"
safe_system "git", "add", SPDX::JSON_PATH
ohai "git commit"
system "git", "commit", "--message", "data/spdx.json: update to #{latest_tag}"
system "git", "commit", "--message", "data/spdx.json: update to #{SPDX.latest_tag}"
end
end

View File

@ -12,8 +12,11 @@ module SPDX
@spdx_data ||= JSON.parse(JSON_PATH.read)
end
def latest_tag
@latest_tag ||= GitHub.open_api(API_URL)["tag_name"]
end
def download_latest_license_data!(to: JSON_PATH)
latest_tag = GitHub.open_api(API_URL)["tag_name"]
data_url = "https://raw.githubusercontent.com/spdx/license-list-data/#{latest_tag}/json/licenses.json"
curl_download(data_url, to: to, partial: false)
end