1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-02 01:08:03 +02:00

Merge pull request #817 from github/submodules

CI: checkout submodules
This commit is contained in:
Mike Linksvayer 2021-03-29 09:33:34 -07:00 committed by GitHub
commit 388481d75e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 7 deletions

View File

@ -13,6 +13,8 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up Ruby
uses: ruby/setup-ruby@v1

View File

@ -8,7 +8,7 @@ how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of
using:
caniuse: https://github.com/Fyrd/caniuse/blob/master/LICENSE
WHATWG HTML standard: https://github.com/whatwg/html/blob/master/LICENSE
FiveThirtyEight data: https://github.com/fivethirtyeight/data/blob/master/LICENSE
Kubernetes documentation: https://github.com/kubernetes/website/blob/master/LICENSE
permissions:

View File

@ -1,5 +1,5 @@
---
title: ODC Open Database License v1.0
title: Open Data Commons Open Database License v1.0
spdx-id: ODbL-1.0
nickname: ODbL

View File

@ -33,11 +33,9 @@ def config
end
def licenses
SpecHelper.licenses ||= begin
site.collections['licenses'].docs.map do |license|
spdx_lcase = File.basename(license.basename, '.txt')
license.to_liquid.merge('spdx-lcase' => spdx_lcase)
end
SpecHelper.licenses ||= site.collections['licenses'].docs.map do |license|
spdx_lcase = File.basename(license.basename, '.txt')
license.to_liquid.merge('spdx-lcase' => spdx_lcase)
end
end
@ -139,6 +137,7 @@ module Licensee
dir = ::File.dirname(__FILE__)
::File.expand_path '../_licenses', dir
end
def spdx_dir
::File.expand_path '../license-list-XML/src', __dir__
end