diff options
author | Matt Friedman <maf675@gmail.com> | 2015-04-28 13:12:48 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2015-04-28 13:12:48 -0700 |
commit | acaa10de529408ba9ca366d021fc1f1bc4bdf904 (patch) | |
tree | 12e1a55bb2600731fc70d3f47973667e765fa722 /travis | |
parent | Merge pull request #3532 from prototech/ticket/13755 (diff) | |
download | phpbb-acaa10de529408ba9ca366d021fc1f1bc4bdf904.tar.gz phpbb-acaa10de529408ba9ca366d021fc1f1bc4bdf904.tar.bz2 phpbb-acaa10de529408ba9ca366d021fc1f1bc4bdf904.zip |
[ticket/13516] Do not search ICC profiles in extension vendors
PHPBB3-13516
Diffstat (limited to 'travis')
-rwxr-xr-x | travis/check-image-icc-profiles.sh | 2 |
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 |