]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing ignorance of 'Not Committed Yet'
authorThomas Müller <thomas.mueller@tmit.eu>
Wed, 25 Feb 2015 13:00:30 +0000 (14:00 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Thu, 26 Mar 2015 10:38:39 +0000 (11:38 +0100)
build/license.php

index bd3bce15a43f10b0fbb10e6d1aa6a16ce2b174e5..322ce2e5e4713a3ae81b12ba1963af5196cfb29a 100644 (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";