blob: c298e57649fbe9766d25422f031c5f5d5bee83ae (
plain) (
tree)
|
|
#!/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/evol 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
|