mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
6421d8b49a
build(update_licenses.sh): make update_licenses.sh faster. Signed-off-by: Jan-Otto Kröpke <joe@cloudeteer.de>
9 lines
424 B
Bash
Executable file
9 lines
424 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
export GOFLAGS="-tags=debug,imagetrust,lint,metrics,mgmt,profile,scrub,search,sync,ui,userprefs,containers_image_openpgp"
|
|
echo "Module | License URL | License" > THIRD-PARTY-LICENSES.md
|
|
echo "---|---|---" >> THIRD-PARTY-LICENSES.md;
|
|
|
|
go list -m all | awk '{print $1}' | xargs -P20 -n1 nice -n 15 go-licenses csv 2>/dev/null | awk -F, '{print $1"|"$2"|"$3}' | LC_ALL=C sort -u >> THIRD-PARTY-LICENSES.md
|