We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fed6e06 commit bf10c0dCopy full SHA for bf10c0d
1 file changed
tools/test-3rd-party-licenses.sh
@@ -9,8 +9,10 @@ OL="$(jq -r '.ol' "$LICENSES_JSON")"
9
mapfile -t ILS < <(jq -r '.ils[]' "$LICENSES_JSON")
10
11
for IL in "${ILS[@]}"; do
12
- # CC-BY -- we are explicitly attributing the authors in our notice files -- further checks needed
+ # we are explicitly attributing the authors in our NOTICE files -- NO further checks needed.
13
[[ "$IL" == CC-BY* ]] && continue
14
+ # we are explicitly linking the original license in our NOTICE file -- NO further checks needed.
15
+ [[ "$IL" == "BlueOak-1.0.0" ]] && continue
16
17
licomp-toolkit verify \
18
-ol "$OL" -il "$IL" \
0 commit comments