[ticket/13516] Do not search ICC profiles in extension vendors

PHPBB3-13516
This commit is contained in:
Matt Friedman 2015-04-28 13:12:48 -07:00
parent 59a178f3cb
commit acaa10de52

View file

@ -15,6 +15,6 @@ TRAVIS_PHP_VERSION=$2
if [ "$TRAVIS_PHP_VERSION" == "5.3.3" -a "$DB" == "mysqli" ] if [ "$TRAVIS_PHP_VERSION" == "5.3.3" -a "$DB" == "mysqli" ]
then 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 {}' parallel --gnu --keep-order 'phpBB/develop/strip_icc_profiles.sh {}'
fi fi