summaryrefslogblamecommitdiff
path: root/.tools/imagemagiccheck.sh
blob: b5076ba5f158bddf4606694a9d902aa0621ea708 (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 imagemagick

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