Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-02-25 16:00:30 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-03-26 13:38:39 +0300
commit1b23f1367bafb8118b7f84df4b233d33903dea9b (patch)
tree6bae93479fb6cde248d63ad6deb26315821c4c24
parenta228b4ccba88111fbf06c130623f3c8630eaa7b6 (diff)
fixing ignorance of 'Not Committed Yet'
-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";