diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-11 20:58:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-11 20:58:59 +0300 |
commit | 27946f189154cc6a4079d68e895aaf0bbd8172f5 (patch) | |
tree | 607f9d19ec9d75cbace595e31dfbdb3b653947c5 /tools/ci | |
parent | 68b46aefd714bb65a588157d6dba9de9f5f5ba4a (diff) | |
download | plus-27946f189154cc6a4079d68e895aaf0bbd8172f5.tar.gz plus-27946f189154cc6a4079d68e895aaf0bbd8172f5.tar.bz2 plus-27946f189154cc6a4079d68e895aaf0bbd8172f5.tar.xz plus-27946f189154cc6a4079d68e895aaf0bbd8172f5.zip |
Add into images ci check for iCCP profiles.
Diffstat (limited to 'tools/ci')
-rwxr-xr-x | tools/ci/scripts/icccheckfile.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ci/scripts/icccheckfile.sh b/tools/ci/scripts/icccheckfile.sh index 5dfd2f80f..8805d192a 100755 --- a/tools/ci/scripts/icccheckfile.sh +++ b/tools/ci/scripts/icccheckfile.sh @@ -1,7 +1,7 @@ #!/bin/bash -identify -verbose $1 | grep profile >/dev/null +identify -verbose $1 | egrep -i "profile|iCCP" >/dev/null if [ "$?" == 0 ]; then - echo "ICC profile found for image $1" + echo "ICC or iCCP profile found for image $1" fi |