diff options
Diffstat (limited to 'imagescheck/icccheckfile.sh')
-rwxr-xr-x | imagescheck/icccheckfile.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/imagescheck/icccheckfile.sh b/imagescheck/icccheckfile.sh index e0a80dd..8f998c0 100755 --- a/imagescheck/icccheckfile.sh +++ b/imagescheck/icccheckfile.sh @@ -1,9 +1,9 @@ #!/bin/bash -identify -verbose $1 | grep -i profile >/dev/null +identify -verbose $1 | egrep -i "profile|iCCP" >/dev/null if [ "$?" == 0 ]; then export name="$1" export name=${name##../../client-data/} - echo "ICC profile found for image $name" + echo "ICC or iCCP profile found for image $name" fi |