blob: a332adf321c1e22d40c6e13a9321fd823e8e6f0f (
plain) (
tree)
|
|
#!/bin/bash
source ./.tools/init.sh
clientdata_init
cd ../client-data ; pwd
aptget_update
aptget_install git-core gcc ca-certificates grep
rm -rf tools
gitclone https://gitlab.com/TMW2 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
echo "Estimated total missing licenses:"
wc -l license.log
exit 1
fi
|