1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-29 10:12:41 +01:00

(stable) Promote 2016 Week 2

This commit is contained in:
epriestley 2016-01-08 16:38:50 -08:00
commit 6833ae5bd3

View file

@ -35,7 +35,7 @@ final class ArcanistCpplintLinter extends ArcanistExternalLinter {
foreach ($lines as $line) {
$line = trim($line);
$matches = null;
$regex = '/^-:(\d+):\s*(.*)\s*\[(.*)\] \[(\d+)\]$/';
$regex = '/(\d+):\s*(.*)\s*\[(.*)\] \[(\d+)\]$/';
if (!preg_match($regex, $line, $matches)) {
continue;
}