diff --git a/tests/scripts/packaging/gitlog.php b/tests/scripts/packaging/gitlog.php index 858a75c341..7a3da63afa 100644 --- a/tests/scripts/packaging/gitlog.php +++ b/tests/scripts/packaging/gitlog.php @@ -34,13 +34,14 @@ foreach ($logs as $log) { if ($showDate) { echo $log['date']->format('Y-m-d H:i:s').' '.substr($log['sha1'],0,8).PHP_EOL; } - // Check for messages to ignore... + // Check for Minor importance messages to ignore... if (strncasecmp($log['message'], 'Minor', 5) === 0) { //Skip minor messages continue; } - if ($log['message'] == 'Update language terms') { - //Skip language update messages + //Skip language update messages (not important) + $langMsg = 'Update language terms'; + if (strpos($log['message'], $langMsg) === 0) { continue; } // Look for tasks references