diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-02-25 14:00:30 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-03-26 11:38:39 +0100 |
commit | 1b23f1367bafb8118b7f84df4b233d33903dea9b (patch) | |
tree | 6bae93479fb6cde248d63ad6deb26315821c4c24 /build | |
parent | a228b4ccba88111fbf06c130623f3c8630eaa7b6 (diff) | |
download | nextcloud-server-1b23f1367bafb8118b7f84df4b233d33903dea9b.tar.gz nextcloud-server-1b23f1367bafb8118b7f84df4b233d33903dea9b.zip |
fixing ignorance of 'Not Committed Yet'
Diffstat (limited to 'build')
-rw-r--r-- | build/license.php | 5 |
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"; |