aboutsummaryrefslogtreecommitdiffstats
path: root/travis
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2015-04-28 13:12:48 -0700
committerMatt Friedman <maf675@gmail.com>2015-04-28 13:12:48 -0700
commitacaa10de529408ba9ca366d021fc1f1bc4bdf904 (patch)
tree12e1a55bb2600731fc70d3f47973667e765fa722 /travis
parent59a178f3cba87f536826df251120f03980a556c6 (diff)
downloadforums-acaa10de529408ba9ca366d021fc1f1bc4bdf904.tar
forums-acaa10de529408ba9ca366d021fc1f1bc4bdf904.tar.gz
forums-acaa10de529408ba9ca366d021fc1f1bc4bdf904.tar.bz2
forums-acaa10de529408ba9ca366d021fc1f1bc4bdf904.tar.xz
forums-acaa10de529408ba9ca366d021fc1f1bc4bdf904.zip
[ticket/13516] Do not search ICC profiles in extension vendors
PHPBB3-13516
Diffstat (limited to 'travis')
-rwxr-xr-xtravis/check-image-icc-profiles.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/travis/check-image-icc-profiles.sh b/travis/check-image-icc-profiles.sh
index bb070ccc27..f526cce264 100755
--- a/travis/check-image-icc-profiles.sh
+++ b/travis/check-image-icc-profiles.sh
@@ -15,6 +15,6 @@ TRAVIS_PHP_VERSION=$2
if [ "$TRAVIS_PHP_VERSION" == "5.3.3" -a "$DB" == "mysqli" ]
then
- find . -type f -not -path './phpBB/vendor/*' -iregex '.*\.\(gif\|jpg\|jpeg\|png\)$' | \
+ find . -type f -not -path './phpBB/*' -iregex '(vendor\|ext/vendor/).*\.\(gif\|jpg\|jpeg\|png\)$' | \
parallel --gnu --keep-order 'phpBB/develop/strip_icc_profiles.sh {}'
fi