blob: 5f3868d7a6f979ace609995d5759b14a2992a416 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/bash
source ./.tools/init.sh
clientdata_init
aptget_update
aptget_install git-core gcc ca-certificates imagemagick
rm -rf tools
gitclone https://gitlab.com/TMW2 evol-tools.git tools
cd tools/imagescheck
./icccheck.sh >icccheck.log
check_error $?
export RES=$(cat icccheck.log)
if [[ -n "${RES}" ]]; then
echo "Detected icc profiles"
cat icccheck.log
exit 1
fi
|