summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-02-25 14:00:30 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-03-26 11:38:39 +0100
commit1b23f1367bafb8118b7f84df4b233d33903dea9b (patch)
tree6bae93479fb6cde248d63ad6deb26315821c4c24 /build
parenta228b4ccba88111fbf06c130623f3c8630eaa7b6 (diff)
downloadnextcloud-server-1b23f1367bafb8118b7f84df4b233d33903dea9b.tar.gz
nextcloud-server-1b23f1367bafb8118b7f84df4b233d33903dea9b.zip
fixing ignorance of 'Not Committed Yet'
Diffstat (limited to 'build')
-rw-r--r--build/license.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/build/license.php b/build/license.php
index bd3bce15a43..322ce2e5e47 100644
--- a/build/license.php
+++ b/build/license.php
@@ -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";