blob: 28cd119933ec39ff39f528714aa83acbc2d0b5bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/bash
aptget_update
aptget_install git-core gcc ca-certificates grep python
source ./.tools/scripts/init.sh
do_init_data
do_init_tools
cd tools/licensecheck
./serverdata.sh # >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
|