summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/ci/scripts/icccheckfile.sh4
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