diff --git a/build/license.php b/build/license.php
index bd3bce15a43f10b0fbb10e6d1aa6a16ce2b174e5..322ce2e5e4713a3ae81b12ba1963af5196cfb29a 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";