From 3c60cfd86385bf2b88ffb7b27f255e8c32c59613 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Thu, 9 Jun 2011 05:58:38 +0200 Subject: [PATCH] [ticket/10204] Detect binary file changes in dirs with names containing dots PHPBB3-10204 --- build/build_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]); }