Add repelzen, create document to list all code licenses

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-12-03 12:32:03 +00:00
parent 4d1b470837
commit b8f2e64e32
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
7 changed files with 101 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/bin/bash
set -e
cd $(dirname $0)
for p in ../plugins/*/plugin.json; do
name=$(jq -crM .name ${p})
license=$(jq -crM .license ${p})
echo "| ${name} | ${license} |"
done