aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-06-09 12:45:11 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-06-09 12:45:11 +0200
commitd64ec4f765bd5fa082cc9eecff927ac2bf153f24 (patch)
treebe42a36cecf4f87bf8671ecfe8d74e54c134818b /build
parentb87fcf70c01c96dc07b46ff78313f2efed5c88e5 (diff)
parent60811a507ea7e8a2634b597d4c1074c0e3d52be3 (diff)
downloadforums-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.php2
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]);
}