Add repelzen, create document to list all code licenses
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
4d1b470837
commit
b8f2e64e32
7 changed files with 101 additions and 0 deletions
11
doc/.generate-plugin-licenses.sh
Executable file
11
doc/.generate-plugin-licenses.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue