summaryrefslogtreecommitdiff
path: root/tools/ci/scripts/icccheckfile.sh
blob: 8805d192a77326e1f1dc426b7db03a4eef9fadc0 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/bash

identify -verbose $1 | egrep -i "profile|iCCP" >/dev/null

if [ "$?" == 0 ]; then
    echo "ICC or iCCP profile found for image $1"
fi