diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-06-09 12:45:11 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-06-09 12:45:11 +0200 |
commit | d64ec4f765bd5fa082cc9eecff927ac2bf153f24 (patch) | |
tree | be42a36cecf4f87bf8671ecfe8d74e54c134818b /build | |
parent | b87fcf70c01c96dc07b46ff78313f2efed5c88e5 (diff) | |
parent | 60811a507ea7e8a2634b597d4c1074c0e3d52be3 (diff) | |
download | forums-d64ec4f765bd5fa082cc9eecff927ac2bf153f24.tar forums-d64ec4f765bd5fa082cc9eecff927ac2bf153f24.tar.gz forums-d64ec4f765bd5fa082cc9eecff927ac2bf153f24.tar.bz2 forums-d64ec4f765bd5fa082cc9eecff927ac2bf153f24.tar.xz forums-d64ec4f765bd5fa082cc9eecff927ac2bf153f24.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/10204] Detect binary file changes in dirs with names containing dots
Diffstat (limited to 'build')
-rw-r--r-- | build/build_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/build_helper.php b/build/build_helper.php index 94fc0ff3b5..2d9b86b3c3 100644 --- a/build/build_helper.php +++ b/build/build_helper.php @@ -177,7 +177,7 @@ class build_package } // Is binary? - if (preg_match('/^Binary files ' . $package_name . '\/(.*) and [a-z0-9_-]+\/\1 differ/i', $line, $match)) + if (preg_match('/^Binary files ' . $package_name . '\/(.*) and [a-z0-9._-]+\/\1 differ/i', $line, $match)) { $binary[] = trim($match[1]); } |