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

           

                               


                                                       

            

  


                     
  
 


                                                    










                                                                                       
#!/bin/bash

source ./.tools/scripts/init.sh

aptget_update
aptget_install git-core gcc ca-certificates grep python

do_init_data

ls

do_init_tools

cd tools/licensecheck
ls

ls ../../serverdata/npc/

./serverdata.py ../../serverdata/npc/ # >license.log

#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
echo "Exiting with status zero because licensecheck errors are not considered critical"
exit 0