diff options
Diffstat (limited to '.tools/licensecheck.sh')
-rwxr-xr-x | .tools/licensecheck.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.tools/licensecheck.sh b/.tools/licensecheck.sh new file mode 100755 index 00000000..750caed1 --- /dev/null +++ b/.tools/licensecheck.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +source ./.tools/init.sh + +clientdata_init + +aptget_update +aptget_install git-core gcc ca-certificates grep +rm -rf tools +gitclone https://gitlab.com/evol evol-tools.git tools + +cd tools/licensecheck + +./clientdata.sh >license.log +check_error $? + +export RES=$(cat license.log) +if [[ -n "${RES}" ]]; then + echo "Detected missing licenses." + cat license.log + exit 1 +fi |