Browse Source

fixing ignorance of 'Not Committed Yet'

tags/v8.1.0alpha1
Thomas Müller 9 years ago
parent
commit
1b23f1367b
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      build/license.php

+ 4
- 1
build/license.php View File

@@ -131,7 +131,10 @@ EOD;
$authors = explode(PHP_EOL, $out);

$authors = array_filter($authors, function($author) {
return !in_array($author, ['', 'Not Committed Yet', 'Jenkins for ownCloud <owncloud-bot@tmit.eu>']);
return !in_array($author, [
'',
'Not Committed Yet <not.committed.yet>',
'Jenkins for ownCloud <owncloud-bot@tmit.eu>']);
});
$authors = array_map(function($author){
return " * @author $author";

Loading…
Cancel
Save