summaryrefslogblamecommitdiff
path: root/.tools/licensecheck.sh
blob: 513efcf9a9ca91e1181573555d19f82ed87e08d4 (plain) (tree)
1
2
3
4
5
6
7
8
9






                       

                            
            
                                                        









                                     

                                            

          
#!/bin/bash

source ./.tools/init.sh

clientdata_init

aptget_update
aptget_install git-core grep

rm -rf tools
gitclone https://git.themanaworld.org/ml 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